rename broadcast to beacon

This commit is contained in:
Peter Buchegger 2020-05-08 22:21:07 +02:00
parent 64a672feba
commit 001a8f4b42
2 changed files with 4 additions and 4 deletions

View file

@ -73,8 +73,8 @@ void loop()
{
show_display(call, "Broadcast to Server...");
Serial.print("[" + timeClient.getFormattedTime() + "] ");
aprs_is.sendMessage(BROADCAST_MESSAGE);
next_update = (timeClient.getMinutes() + BROADCAST_TIMEOUT) % 60;
aprs_is.sendMessage(BEACON_MESSAGE);
next_update = (timeClient.getMinutes() + BEACON_TIMEOUT) % 60;
}
if(aprs_is.available() > 0)
{

View file

@ -15,8 +15,8 @@
//#define SERVER "euro.aprs2.net"
#define PORT 14580
#define BROADCAST_TIMEOUT 15
#define BROADCAST_MESSAGE "OE5BPA-10>APRS:=4819.82NI01418.68E&LoRa IGATE (test RX mode), Info: github.com/peterus/LoRa_APRS_iGate"
#define BEACON_TIMEOUT 15
#define BEACON_MESSAGE "OE5BPA-10>APRS:=4819.82NI01418.68E&LoRa IGATE (test RX mode), Info: github.com/peterus/LoRa_APRS_iGate"
String call = "OE5BPA";