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);