Basic support for the Chevy Volt Gen1 charger, including webserver integration. Intended to enable use of inverters lacking charging functions and standalone charging modes.

This commit is contained in:
Steven Maresca 2024-01-26 17:25:44 -05:00
parent 50bf4cba05
commit 5f2c11ba35
8 changed files with 503 additions and 0 deletions

View file

@ -35,6 +35,14 @@ extern const char* ssidAP;
extern const char* passwordAP;
extern const char* versionNumber;
// Common charger parameters
extern float charger_stat_HVcur;
extern float charger_stat_HVvol;
extern float charger_stat_ACcur;
extern float charger_stat_ACvol;
extern float charger_stat_LVcur;
extern float charger_stat_LVvol;
/**
* @brief Initialization function for the webserver.
*