From deb4ea69749cadec77f145cc44ecc79daa162aef Mon Sep 17 00:00:00 2001 From: richonguzman Date: Sat, 20 Apr 2024 14:02:11 -0400 Subject: [PATCH] heltec v3 battery --- src/utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.cpp b/src/utils.cpp index e3846d8..06ae583 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -113,7 +113,7 @@ namespace Utils { beaconPacket += Config.beacon.comment; secondaryBeaconPacket += Config.beacon.comment; - #if defined(TTGO_T_LORA32_V2_1) || defined(HELTEC_V2) || defined(HELTEC_HTCT62) + #if defined(TTGO_T_LORA32_V2_1) || defined(HELTEC_V2) || defined(HELTEC_HTCT62) || defined(HELTEC_V3) if (Config.sendBatteryVoltage) { beaconPacket += " Batt=" + String(BATTERY_Utils::checkBattery(),2) + "V"; secondaryBeaconPacket += " Batt=" + String(BATTERY_Utils::checkBattery(),2) + "V";