Update TTGO_T-Beam_LoRa_APRS.ino
Appended battery voltage to end of APRS 'Comment' if HW_COMMENT is UNcommented for operation mode WX_FIXEDpull/22/head
rodzic
e2077e45d3
commit
77f2067950
|
@ -921,6 +921,12 @@ switch(tracker_mode) {
|
||||||
outString += "b.....";
|
outString += "b.....";
|
||||||
#endif
|
#endif
|
||||||
outString += MY_COMMENT;
|
outString += MY_COMMENT;
|
||||||
|
#ifdef HW_COMMENT
|
||||||
|
outString += (" --");
|
||||||
|
outString += " Batt=";
|
||||||
|
outString += String(BattVolts,2);
|
||||||
|
outString += ("V");
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
case WX_TRACKER:
|
case WX_TRACKER:
|
||||||
if (wx) {
|
if (wx) {
|
||||||
|
|
Ładowanie…
Reference in New Issue