From c2cd225a91411253dc058811e3d57ec65919c495 Mon Sep 17 00:00:00 2001 From: oe3cjb Date: Sun, 25 Nov 2018 21:12:23 +0100 Subject: [PATCH 1/3] Create README.md --- README.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..8b666f2 --- /dev/null +++ b/README.md @@ -0,0 +1,48 @@ +// one package is with position and battery voltage +// the next is with weather data in APRS format +// +// licensed under CC BY-NC-SA +// +// last update: 25.11.2018 +// modifications: select mode during compilation to select model + +// USER DATA - USE THESE LINES TO MODIFY YOUR PREFERENCES +// Your Callsign +String Tcall="OE3OOO-7"; //your Call Sign for normal position reports +String wxTcall="OE3OOO-7"; //your Call Sign for weather reports + +// Your symbol table and symbol for position reports incl. battery voltage +String sTable="/"; //Primer +//String sTable="\"; //Alternativ + +// String sSymbol="_"; //symbol code Weather Station +// String sSymbol=">"; //symbol code CAR +String sSymbol="["; //symbol code RUNNER +// String sSymbol="b"; //symbol code BICYCLE +// String sSymbol="<"; //symbol code MOTORCYCLE + +// SEND_WX - if true the tracker sends WX reports - needs DHT22 connected at Pin 10 +// when FIXED_POSITION is false then it sends alternating normal position packets and weather report packets +#define SEND_WX false + +// Your symbol table and symbol for weather reports +String wxTable="/"; //Primer +String wxSymbol="_"; //Symbol Code Weather Station +// String wxSymbol="W"; //Symbol Code Weather Station/ + +#define FIXED_POSITION false +// set to true if you want to use fixed position (position defined below) instead, or to false if you want to use GPS data +// also stops sending normal position reports when sending weather reports is active (SEND_WX true) + +#define LATITUDE "4813.62N" // please in APRS notation DDMM.mmN or DDMM.mmS used for FIXED_POSITION +#define LONGITUDE "01539.85E" // please in APRS notation DDDMM.mmE or DDDMM.mmW used for FIXED_POSITION +// ^^^^^LATITUDE and LONGITUDE only used when FIXED_POSITION is true + +// Tracker setting: use these lines to modify the tracker behaviour +#define TXFREQ 433.775 // Transmit frequency in MHz +#define TXdbmW 18 // Transmit power in dBm +#define TXenablePA 0 // switch internal power amplifier on (1) or off (0) + +// Transmit intervall +unsigned long nextTX = 60000L; // Send every 60 secs +// unsigned long nextTX = 5000L; // Send every 5 secs - FOR TESTS ONLY - NO CONNECTION TO SERVER PLEASE!!!! From 13856bd74dc3ecde4b95fd96118e96269517a85e Mon Sep 17 00:00:00 2001 From: oe3cjb Date: Sun, 25 Nov 2018 21:13:41 +0100 Subject: [PATCH 2/3] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 8b666f2..ebd7dfc 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,6 @@ // licensed under CC BY-NC-SA // // last update: 25.11.2018 -// modifications: select mode during compilation to select model // USER DATA - USE THESE LINES TO MODIFY YOUR PREFERENCES // Your Callsign From 9c6197557249abd26c69b44ed5a69b3e4a9259f9 Mon Sep 17 00:00:00 2001 From: oe3cjb Date: Sun, 25 Nov 2018 21:15:25 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 48 +----------------------------------------------- 1 file changed, 1 insertion(+), 47 deletions(-) diff --git a/README.md b/README.md index ebd7dfc..06ab9a2 100644 --- a/README.md +++ b/README.md @@ -1,47 +1 @@ -// one package is with position and battery voltage -// the next is with weather data in APRS format -// -// licensed under CC BY-NC-SA -// -// last update: 25.11.2018 - -// USER DATA - USE THESE LINES TO MODIFY YOUR PREFERENCES -// Your Callsign -String Tcall="OE3OOO-7"; //your Call Sign for normal position reports -String wxTcall="OE3OOO-7"; //your Call Sign for weather reports - -// Your symbol table and symbol for position reports incl. battery voltage -String sTable="/"; //Primer -//String sTable="\"; //Alternativ - -// String sSymbol="_"; //symbol code Weather Station -// String sSymbol=">"; //symbol code CAR -String sSymbol="["; //symbol code RUNNER -// String sSymbol="b"; //symbol code BICYCLE -// String sSymbol="<"; //symbol code MOTORCYCLE - -// SEND_WX - if true the tracker sends WX reports - needs DHT22 connected at Pin 10 -// when FIXED_POSITION is false then it sends alternating normal position packets and weather report packets -#define SEND_WX false - -// Your symbol table and symbol for weather reports -String wxTable="/"; //Primer -String wxSymbol="_"; //Symbol Code Weather Station -// String wxSymbol="W"; //Symbol Code Weather Station/ - -#define FIXED_POSITION false -// set to true if you want to use fixed position (position defined below) instead, or to false if you want to use GPS data -// also stops sending normal position reports when sending weather reports is active (SEND_WX true) - -#define LATITUDE "4813.62N" // please in APRS notation DDMM.mmN or DDMM.mmS used for FIXED_POSITION -#define LONGITUDE "01539.85E" // please in APRS notation DDDMM.mmE or DDDMM.mmW used for FIXED_POSITION -// ^^^^^LATITUDE and LONGITUDE only used when FIXED_POSITION is true - -// Tracker setting: use these lines to modify the tracker behaviour -#define TXFREQ 433.775 // Transmit frequency in MHz -#define TXdbmW 18 // Transmit power in dBm -#define TXenablePA 0 // switch internal power amplifier on (1) or off (0) - -// Transmit intervall -unsigned long nextTX = 60000L; // Send every 60 secs -// unsigned long nextTX = 5000L; // Send every 5 secs - FOR TESTS ONLY - NO CONNECTION TO SERVER PLEASE!!!! +Use the first lines to modify the callsign, fixed position if needed and APRS symbols