Skip to content

Commit

Permalink
send $AT during sleep for EV connect/disconnect
Browse files Browse the repository at this point in the history
  • Loading branch information
lincomatic committed Mar 28, 2020
1 parent 43675b2 commit faf39ff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions firmware/open_evse/CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 3 additions & 0 deletions firmware/open_evse/J1772EvseController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1179,6 +1179,9 @@ void J1772EVSEController::Update(uint8_t forcetransition)
}
#endif // DELAYTIMER
g_OBD.Update(OBD_UPD_FORCE);
#ifdef RAPI
RapiSendEvseState();
#endif // RAPI
}
}

Expand Down
2 changes: 1 addition & 1 deletion firmware/open_evse/open_evse.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit faf39ff

Please sign in to comment.