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

Integration of ArduinoOcpp #182

Merged
merged 22 commits into from
Jul 15, 2021
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ version = -DBUILD_TAG=4.0.0
monitor_speed = 115200
lib_deps =
ArduinoJson@6.15.1
ArduinoMongoose@0.0.15
; ArduinoMongoose@0.0.15
https://github.com/matth-x/ArduinoMongoose
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will need updating when ArduinoMongoose PR is merged and released

Micro Debug@0.0.5
ConfigJson@0.0.3
OpenEVSE@0.0.7
Expand All @@ -42,6 +43,8 @@ lib_deps =
MicroTasks@0.0.1
ESP32 AnalogWrite@0.2
lorol/LittleFS_esp32@1.0.5
https://github.com/matth-x/ArduinoOcpp
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you publish to the Platform IO registry?

lib_ignore = WebSockets ; ArduinoOcpp: don't compile built-in WS library
extra_scripts = scripts/extra_script.py
debug_flags =
-ggdb
Expand Down Expand Up @@ -72,6 +75,7 @@ build_flags =
#-DMBEDTLS_DEBUG_C
-DMG_ENABLE_SNTP=1
-DCS_PLATFORM=CS_P_ESP32
-DAO_CUSTOM_WS ; ArduinoOcpp: don't use built-in WS library
build_partitions = min_spiffs.csv
monitor_flags = --filter=esp32_exception_decoder

Expand All @@ -89,6 +93,7 @@ platform = ${common.platform}
board = nodemcu-32s
framework = arduino, espidf
lib_deps = ${common.lib_deps}
lib_ignore = ${common.lib_ignore}
src_build_flags =
${common.version}.dev
${common.src_build_flags}
Expand All @@ -111,6 +116,7 @@ framework = arduino, espidf
lib_deps =
${common.lib_deps}
${common.neopixel_lib}
lib_ignore = ${common.lib_ignore}
src_build_flags =
${common.version}.dev
${common.src_build_flags}
Expand Down Expand Up @@ -142,6 +148,7 @@ platform = ${common.platform}
board = featheresp32
framework = arduino, espidf
lib_deps = ${common.lib_deps}
lib_ignore = ${common.lib_ignore}
src_build_flags =
${common.version}.dev
${common.src_build_flags}
Expand All @@ -165,6 +172,7 @@ platform = ${common.platform}
board = featheresp32
framework = arduino, espidf
lib_deps = ${common.lib_deps}
lib_ignore = ${common.lib_ignore}
src_build_flags =
${common.version}
${common.src_build_flags}
Expand All @@ -187,6 +195,7 @@ platform = ${common.platform}
board = featheresp32
framework = arduino, espidf
lib_deps = ${common.lib_deps}
lib_ignore = ${common.lib_ignore}
src_build_flags =
${common.version}.dev
${common.src_build_flags}
Expand All @@ -211,6 +220,7 @@ lib_deps =
${common.lib_deps}
${common.neopixel_lib}
adafruit/Adafruit MCP9808 Library @ 1.1.2
lib_ignore = ${common.lib_ignore}
src_build_flags =
${common.version}
${common.src_build_flags}
Expand Down Expand Up @@ -239,6 +249,7 @@ platform = ${common.platform}
board = esp32-gateway
framework = arduino, espidf
lib_deps = ${common.lib_deps}
lib_ignore = ${common.lib_ignore}
src_build_flags =
${common.version}
${common.src_build_flags}
Expand Down Expand Up @@ -274,6 +285,7 @@ platform = ${common.platform}
board = heltec_wifi_lora_32_V2
framework = arduino, espidf
lib_deps = ${common.lib_deps}
lib_ignore = ${common.lib_ignore}
src_build_flags =
${common.version}.dev
${common.src_build_flags}
Expand Down
Loading