From 844eca53a895c4a9f06ce5a1170561f3519be7fc Mon Sep 17 00:00:00 2001 From: KipK Date: Mon, 16 Jan 2023 22:39:42 +0100 Subject: [PATCH] set default _max_hardware_current to 80 fix #517 --- src/evse_monitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/evse_monitor.cpp b/src/evse_monitor.cpp index c411a0dd..c705d0f9 100644 --- a/src/evse_monitor.cpp +++ b/src/evse_monitor.cpp @@ -164,7 +164,7 @@ EvseMonitor::EvseMonitor(OpenEVSEClass &openevse) : _min_current(0), _pilot(0), _max_configured_current(0), - _max_hardware_current(0), + _max_hardware_current(80), _data_ready(EVSE_MONITOR_DATA_READY), _boot_ready(EVSE_MONITOR_BOOT_READY), _session_complete(EVSE_MONITOR_SESSION_COMPLETE_MASK, EVSE_MONITOR_SESSION_COMPLETE_TRIGGER),