From 9a7d64093c5d9c9911b619515ee30d185422a92a Mon Sep 17 00:00:00 2001 From: James Date: Fri, 26 Apr 2024 12:44:30 +0100 Subject: [PATCH] watts --- ESPBMS.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/ESPBMS.ino b/ESPBMS.ino index 2792ba0..9c3e09b 100644 --- a/ESPBMS.ino +++ b/ESPBMS.ino @@ -305,6 +305,7 @@ bool processBasicInfo(byte *data, unsigned int dataLen){ Serial.printf("%s Voltage: %f\r\n",currentName, (float)Volts / 1000); Serial.printf("%s Amps: %f\r\n",currentName, (float)Amps / 1000); + Serial.printf("%s Watts: %f\r\n",currentName, (float)Watts); Serial.printf("%s Capacity Remain Ah: %f\r\n",currentName, (float)CapacityRemainAh / 1000); Serial.printf("%s Capacity Remain Percent: %d\r\n",currentName, CapacityRemainPercent); Serial.printf("%s Temp1: %f\r\n",currentName, (float)Temp1 / 10);