diff --git a/ESPBMS.ino b/ESPBMS.ino index 5839f59..91ad14b 100644 --- a/ESPBMS.ino +++ b/ESPBMS.ino @@ -361,10 +361,10 @@ bool processCellInfo(byte *data, unsigned int dataLen) Serial.printf(">>>%s.cell.%d.voltage %f\r\n",currentName, i+1,(float)CellVolt/1000); } - Serial.printf(">>>%s.max_cell_voltage: %f\r\n",currentName, (float)_cellMax / 1000); - Serial.printf(">>>%s.min_cell_voltage: %f\r\n",currentName, (float)_cellMin / 1000); - Serial.printf(">>>%s.difference_cell_voltage: %f\r\n",currentName, (float)(_cellMax - _cellMin) / 1000); - Serial.printf(">>>%s.average_cell_voltage: %f\r\n",currentName, (float)(_cellSum / NumOfCells) / 1000); + Serial.printf(">>>%s.max_cell_voltage %f\r\n",currentName, (float)_cellMax / 1000); + Serial.printf(">>>%s.min_cell_voltage %f\r\n",currentName, (float)_cellMin / 1000); + Serial.printf(">>>%s.difference_cell_voltage %f\r\n",currentName, (float)(_cellMax - _cellMin) / 1000); + Serial.printf(">>>%s.average_cell_voltage %f\r\n",currentName, (float)(_cellSum / NumOfCells) / 1000); gotCellInfo=true;