diff --git a/firmware/open_evse/CHANGELOG b/firmware/open_evse/CHANGELOG index 8590d402..d6821c72 100644 --- a/firmware/open_evse/CHANGELOG +++ b/firmware/open_evse/CHANGELOG @@ -1,5 +1,9 @@ Change Log +D6.2.1 20200327 SCL +- doPost() - don't compare against hardcoded 900 .. use ThreshAB +- send $AT during sleep if EV connect/disconnect + D6.2.0 20200327 SCL - fix 1 sec delay in showing current when charging starts - make space by taking stuff out of button menu that is still accessible via WiFi NOSETUP_MENU diff --git a/firmware/open_evse/J1772EvseController.cpp b/firmware/open_evse/J1772EvseController.cpp index eea3e56b..883a87a1 100644 --- a/firmware/open_evse/J1772EvseController.cpp +++ b/firmware/open_evse/J1772EvseController.cpp @@ -1179,6 +1179,9 @@ void J1772EVSEController::Update(uint8_t forcetransition) } #endif // DELAYTIMER g_OBD.Update(OBD_UPD_FORCE); +#ifdef RAPI + RapiSendEvseState(); +#endif // RAPI } } diff --git a/firmware/open_evse/open_evse.h b/firmware/open_evse/open_evse.h index 4fdc0598..0508b62b 100644 --- a/firmware/open_evse/open_evse.h +++ b/firmware/open_evse/open_evse.h @@ -42,7 +42,7 @@ #define clrBits(flags,bits) (flags &= ~(bits)) #ifndef VERSION -#define VERSION "D6.2.0" +#define VERSION "D6.2.1" #endif // !VERSION #include "Language_default.h" //Default language should always be included as bottom layer