Update TTGO_T-Beam_LoRa_APRS.ino

Appended battery voltage to end of APRS 'Comment' if HW_COMMENT is UNcommented for operation mode WX_FIXED
pull/22/head
K4KDR 2021-05-31 02:14:42 +00:00 zatwierdzone przez GitHub
rodzic e2077e45d3
commit 77f2067950
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -921,6 +921,12 @@ switch(tracker_mode) {
outString += "b.....";
#endif
outString += MY_COMMENT;
#ifdef HW_COMMENT
outString += (" --");
outString += " Batt=";
outString += String(BattVolts,2);
outString += ("V");
#endif
break;
case WX_TRACKER:
if (wx) {