-
Notifications
You must be signed in to change notification settings - Fork 118
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
Changes from 18 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
54287df
empty Ocpp MicroTask
matth-x c4d7902
prepare custom socket
matth-x cf45915
introduce ArduinoOcpp facade
matth-x 3b00034
integrate BootNotification, update ArduinoOcpp
matth-x 839a69d
read SAE1772 charging status
matth-x 495e575
integrate (Remote-) Start- and StopTransaction
matth-x e7f1e8a
basic charging session management
matth-x 892e9e9
Define EVSE behavior once in setup()
matth-x 997a184
integrate Mongoose WebSockets
matth-x 37b2ba2
stabelize ocpp socket
matth-x 1df3e6c
LittleFS integration
matth-x dbc0681
added OCPP to configs menu
matth-x d3e3ddb
CP behavior, UI fixes
matth-x b6614f4
minor fixes
matth-x 3ff5a0a
adapted variable naming
matth-x c4f412f
more readable claiming procedure
matth-x 755cc05
Resolved compilation issues
matth-x 178c2a2
more precise variable naming
matth-x 4c7171d
explicit conversion
matth-x fbdb0fd
feedback Jeremy + little improvements
matth-x f24cacb
restore readme.md
matth-x ee9bea4
feedback Jeremy
matth-x File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
Micro Debug@0.0.5 | ||
ConfigJson@0.0.3 | ||
OpenEVSE@0.0.7 | ||
|
@@ -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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
|
@@ -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 | ||
|
||
|
@@ -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} | ||
|
@@ -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} | ||
|
@@ -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} | ||
|
@@ -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} | ||
|
@@ -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} | ||
|
@@ -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} | ||
|
@@ -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} | ||
|
@@ -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} | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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