@@ -2,3 +2,5 @@ | |||
.piolibdeps | |||
.vscode | |||
.vscode/c_cpp_properties.json | |||
.vscode/.browse.c_cpp.db* | |||
.vscode/launch.json |
@@ -9,7 +9,7 @@ To create software needs a lot of time. If you like what I'm doing, it would be | |||
Before you start to use it, change the callsign in the main.cpp please. | |||
``` | |||
char callSign[] = "CALLSING"; | |||
char callSign[] = "CALLSIGN"; | |||
char comment[] = "CALLSIGN APRS Tracker"; | |||
``` | |||
@@ -11,7 +11,7 @@ static const uint32_t SerialBaud = 9600; | |||
static const uint32_t GPSBaud = 9600; | |||
char callSign[] = "DC6AP"; | |||
char comment[] = "DC6AP APRS Tracker"; | |||
char comment[] = "APRS WOMO Tracker"; | |||
boolean gotPacket = false; | |||
AX25Msg incomingPacket; | |||
@@ -52,7 +52,7 @@ void setup() { | |||
void loop() { | |||
locationUpdate(gps.location.lat(),gps.location.lng()); | |||
smartDelay(20000); | |||
smartDelay(6000); | |||
} | |||
// basically delay without stopping the processor. |