From fc407a10c0295e741a9d3b4ec8464c3d44337a92 Mon Sep 17 00:00:00 2001 From: uhi22 Date: Mon, 22 Apr 2024 18:42:50 +0200 Subject: [PATCH] EvseMode: shortened CableCheck from 10 to 5 loops --- fsmEvse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsmEvse.py b/fsmEvse.py index b7fd11a..7fd2a4c 100644 --- a/fsmEvse.py +++ b/fsmEvse.py @@ -204,7 +204,7 @@ class fsmEvse(): jsondict = json.loads(strConverterResult) current_soc = int(jsondict.get("DC_EVStatus.EVRESSSOC", -1)) self.publishSoCs(current_soc, -1, -1, origin="CableCheckReq") - if (self.nCableCheckLoops<10): + if (self.nCableCheckLoops<5): self.nCableCheckLoops+=1 strCableCheckOngoing = "1" else: