Update configuration.h

This commit is contained in:
Thomas 2022-05-31 15:58:57 +02:00 committed by GitHub
parent c78da085d5
commit 368996c0cc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@ public:
int min_bcn; int min_bcn;
}; };
Beacon() : callsign("NOCALL-10"), path("WIDE1-1"), message("LoRa Tracker"), timeout(1), symbol("["), overlay("/"), enhance_precision(true) { Beacon() : callsign("NOCALL-10"), path("WIDE1-1"), message("LoRa Tracker"), timeout(1), symbol("["), overlay("/"), type(" "), enhance_precision(true) {
} }
String callsign; String callsign;
@ -34,6 +34,7 @@ public:
int timeout; int timeout;
String symbol; String symbol;
String overlay; String overlay;
String type;
Smart_Beacon smart_beacon; Smart_Beacon smart_beacon;
bool enhance_precision; bool enhance_precision;
}; };