We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39a15ab commit 8743e4bCopy full SHA for 8743e4b
src/mqtt.cpp
@@ -58,7 +58,7 @@ void mqttmsg_callback(MongooseString topic, MongooseString payload) {
58
}
59
else if (topic_string == mqtt_vrms){
60
voltage = payload_str.toFloat();
61
- DBUGF("voltage:%d", voltage);
+ DBUGF("voltage:%.1f", voltage);
62
OpenEVSE.setVoltage(voltage, [](int ret) {
63
// Only gives better power calculations so not critical if this fails
64
});
0 commit comments