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
This commit is contained in:
K4KDR 2021-05-31 02:14:42 +00:00 committed by GitHub
parent e2077e45d3
commit 77f2067950
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -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) {