From 66078767bb76fd4c4dd2791192caaa4e14cde3a7 Mon Sep 17 00:00:00 2001 From: richonguzman Date: Sat, 4 May 2024 20:52:24 -0400 Subject: [PATCH] battery info added --- src/station_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/station_utils.cpp b/src/station_utils.cpp index cae788d..c999953 100644 --- a/src/station_utils.cpp +++ b/src/station_utils.cpp @@ -419,7 +419,7 @@ namespace STATION_Utils { #if defined(TTGO_T_Beam_V1_2) || defined(TTGO_T_Beam_V1_2_SX1262) comment += " Bat=" + String(batteryVoltage.toFloat()/1000,2) + "V (" + batteryChargeCurrent + "%)"; #endif - #if defined(HELTEC_V3_GPS) + #if defined(HELTEC_V3_GPS) || defined(HELTEC_WIRELESS_TRACKER) comment += " Bat=" + String(batteryVoltage.toFloat(),2) + "V"; #endif }