Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OCPP upgrade #506

Merged
merged 15 commits into from
Jan 27, 2023
Merged
15 changes: 10 additions & 5 deletions models/Config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ x-examples:
mqtt_announce_topic: openevse/announce/a7d4
ocpp_server: ''
ocpp_chargeBoxId: ''
ocpp_idTag: ''
tx_start_point: tx_pending
ocpp_authkey: ''
ohm: ''
divert_PV_ratio: 1.1
divert_attack_smoothing_factor: 0.4
Expand All @@ -82,6 +81,9 @@ x-examples:
ocpp_enabled: true
ocpp_suspend_evse: true
ocpp_energize_plug: true
ocpp_auth_auto: true
ocpp_idtag: '0E000000'
ocpp_auth_offline: true
mqtt_protocol: mqtt
charge_mode: fast
x-tags:
Expand Down Expand Up @@ -223,11 +225,14 @@ properties:
type: string
ocpp_chargeBoxId:
type: string
ocpp_idTag:
ocpp_authkey:
type: string
tx_start_point:
ocpp_auth_auto:
type: boolean
ocpp_idtag:
type: string
minLength: 1
ocpp_auth_offline:
type: boolean
ohm:
type: string
divert_PV_ratio:
Expand Down
7 changes: 5 additions & 2 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ lib_deps =
jeremypoulter/[email protected]
erropix/ESP32 [email protected]
lorol/[email protected]
matth-x/[email protected]
matth-x/[email protected]
matth-x/[email protected]
lib_ignore = WebSockets ; ArduinoOcpp: don't compile built-in WS library
extra_scripts = scripts/extra_script.py
debug_flags =
Expand Down Expand Up @@ -83,7 +84,9 @@ build_flags =
-D CS_PLATFORM=CS_P_ESP32
-D AO_CUSTOM_WS ; ArduinoOcpp: don't use built-in WS library
-D AO_CUSTOM_CONSOLE ; ArduinoOcpp: use custom debug out
-D AO_DBG_LEVEL=AO_DL_WARN
-D AO_DBG_LEVEL=AO_DL_INFO
-D AO_MG_VERSION_614 ; use MG v6.14
-D AO_CA_CERT_LOCAL ; manage certificate locally
#-D ENABLE_DEBUG
#-D ENABLE_DEBUG_MONGOOSE_HTTP_CLIENT
-D RAPI_MAX_COMMANDS=20
Expand Down
262 changes: 0 additions & 262 deletions src/MongooseOcppSocketClient.cpp

This file was deleted.

58 changes: 0 additions & 58 deletions src/MongooseOcppSocketClient.h

This file was deleted.

Loading