mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2025-12-06 07:42:00 +01:00
rename broadcast to beacon
This commit is contained in:
parent
64a672feba
commit
001a8f4b42
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue