├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── copilot-instructions.md ├── dependabot.yml └── workflows │ ├── build.yaml │ ├── build_gui.yml │ ├── dependabot.yml │ ├── divert_sim.yaml │ ├── openapi_validate.yaml │ └── release_validation.yaml ├── .gitignore ├── .gitmodules ├── .jshintrc ├── .spectral.yaml ├── .stoplight.json ├── .stoplight └── styleguide.json ├── BootScreen.png ├── ChargeScreen.png ├── Developers_Guides ├── Developers Guide_HTTP.docx ├── Developers Guide_HTTP.pdf ├── Developers Guide_MQTT.docx └── Developers Guide_MQTT.pdf ├── api.yml ├── blank_1MB.bin ├── boards.png ├── divert_sim ├── .gitattributes ├── .gitignore ├── .vscode │ ├── launch.json │ └── tasks.json ├── EEPROM.h ├── FakeDuino │ ├── Arduino.h │ ├── Console.cpp │ ├── Console.h │ ├── Core.cpp │ ├── Core.h │ ├── FS.cpp │ ├── FS.h │ ├── FSImpl.h │ ├── LittleFS.cpp │ ├── LittleFS.h │ ├── Print.cpp │ ├── Print.h │ ├── Printable.h │ ├── Serial.cpp │ ├── Serial.h │ ├── Stream.cpp │ ├── Stream.h │ ├── WProgram.h │ ├── WString.cpp │ ├── WString.h │ ├── vfs_api.cpp │ └── vfs_api.h ├── LittleFS.h ├── Makefile ├── Makefile.FakeDuino ├── RapiSender.cpp ├── cxxopts.hpp ├── data │ ├── CloudyMorning.csv │ ├── Energy_and_Power_Day_2020-03-22.csv │ ├── Energy_and_Power_Day_2020-03-31.csv │ ├── Energy_and_Power_Day_2020-04-01.csv │ ├── almostperfect.csv │ ├── config-default.json │ ├── config-inputfilter-noimport.json │ ├── config-inputfilter-nowaste.json │ ├── day1.csv │ ├── day1_grid_ie.csv │ ├── day2.csv │ ├── day2_grid_ie.csv │ ├── day3.csv │ ├── day3_grid_ie.csv │ ├── solar-vrms.csv │ └── test_config.json ├── divert_sim.cpp ├── interactive.html ├── output │ ├── CloudyMorning_master.csv │ ├── Energy_and_Power_Day_2020-03-22_master.csv │ ├── Energy_and_Power_Day_2020-03-31_master.csv │ ├── Energy_and_Power_Day_2020-04-01_master.csv │ ├── almostperfect_master.csv │ ├── day1_grid_ie_master.csv │ ├── day1_master.csv │ ├── day2_grid_ie_master.csv │ ├── day2_master.csv │ ├── day3_grid_ie_master.csv │ ├── day3_master.csv │ ├── solar-vrms_master.csv │ └── summary_master.csv ├── parser.hpp ├── requirements.txt ├── run_simulations.py ├── server.py ├── simulations.css ├── simulations.js ├── test.http ├── test_config.py ├── test_divert.py └── view.html ├── docs ├── developer-guide.md ├── divert-advanced.png ├── divert.png ├── eco.png ├── esp32-gateway-connected.png ├── esp32-gateway-connections.jpg ├── esp32-gateway-emonevse.jpg ├── esp32-gateway-prewired.jpg ├── main2.png ├── mqtt.md ├── openevse-wifi-modules.png ├── process.md ├── rapi.md ├── services.png ├── user-guide.md ├── wifi-connect.png ├── wifi-scan.png └── wired-ethernet.md ├── gui-tft ├── access_point.png ├── access_point_connected.png ├── button_bar.png ├── car_connected.png ├── car_disconnected.png ├── charging.png ├── connected.png ├── disabled.png ├── error.png ├── lock.png ├── logo.png ├── no_wifi.png ├── not_connected.png ├── sleeping.png ├── start.png └── wifi.png ├── jsconfig.json ├── lib └── readme.txt ├── min_spiffs.csv ├── min_spiffs_debug.csv ├── models ├── Certificate.yaml ├── Claim.yaml ├── Config.yaml ├── EvseState.yaml ├── Limit.yaml ├── Properties.yaml └── Status.yaml ├── openevse_16mb.csv ├── platformio.ini ├── prepare-release.sh ├── readme.md ├── scripts ├── auto_fw_version.py ├── ci_arduino.sh ├── ci_platformio.sh └── extra_script.py ├── src ├── LedManagerTask.cpp ├── LedManagerTask.h ├── app_config.cpp ├── app_config.h ├── app_config_mode.h ├── app_config_mqtt.h ├── app_config_v1.cpp ├── certificates.cpp ├── certificates.h ├── current_shaper.cpp ├── current_shaper.h ├── debug.cpp ├── debug.h ├── divert.cpp ├── divert.h ├── embedded_files.cpp ├── embedded_files.h ├── emoncms.cpp ├── emoncms.h ├── emonesp.h ├── energy_meter.cpp ├── energy_meter.h ├── event.h ├── event_log.cpp ├── event_log.h ├── evse_man.cpp ├── evse_man.h ├── evse_monitor.cpp ├── evse_monitor.h ├── evse_state.h ├── http_update.cpp ├── http_update.h ├── input.cpp ├── input.h ├── input_filter.cpp ├── input_filter.h ├── json_serialize.h ├── lcd.cpp ├── lcd.h ├── lcd_common.h ├── lcd_static │ ├── lcd_gui.access_point_connected_png.h │ ├── lcd_gui.access_point_png.h │ ├── lcd_gui.button_bar_png.h │ ├── lcd_gui.car_connected_png.h │ ├── lcd_gui.car_disconnected_png.h │ ├── lcd_gui.charging_png.h │ ├── lcd_gui.connected_png.h │ ├── lcd_gui.disabled_png.h │ ├── lcd_gui.error_png.h │ ├── lcd_gui.lock_png.h │ ├── lcd_gui.logo_png.h │ ├── lcd_gui.no_wifi_png.h │ ├── lcd_gui.not_connected_png.h │ ├── lcd_gui.sleeping_png.h │ ├── lcd_gui.start_png.h │ ├── lcd_gui.wifi_png.h │ └── lcd_gui_static_files.h ├── lcd_tft.cpp ├── lcd_tft.h ├── legacy_support.cpp ├── legacy_support.h ├── limit.cpp ├── limit.h ├── main.cpp ├── manual.cpp ├── manual.h ├── mqtt.cpp ├── mqtt.h ├── net_manager.cpp ├── net_manager.h ├── ocpp.cpp ├── ocpp.h ├── ohm.cpp ├── ohm.h ├── ota.cpp ├── ota.h ├── pn532.cpp ├── pn532.h ├── profile.h ├── rfid.cpp ├── rfid.h ├── root_ca.cpp ├── root_ca.h ├── scheduler.cpp ├── scheduler.h ├── screens │ ├── screen_base.h │ ├── screen_boot.cpp │ ├── screen_boot.h │ ├── screen_charge.cpp │ ├── screen_charge.h │ ├── screen_factory.h │ ├── screen_lock.cpp │ ├── screen_lock.h │ ├── screen_manager.cpp │ ├── screen_manager.h │ ├── screen_renderer.cpp │ └── screen_renderer.h ├── tesla_client.cpp ├── tesla_client.h ├── time_man.cpp ├── time_man.h ├── web_server.cpp ├── web_server.h ├── web_server_certificates.cpp ├── web_server_claims.cpp ├── web_server_config.cpp ├── web_server_events.cpp ├── web_server_static.cpp ├── web_server_static.h ├── web_server_time.cpp ├── web_server_update.cpp ├── web_static │ ├── readme.md │ ├── web_server.assets_components_bb056724_css_gz.h │ ├── web_server.assets_components_ce5bee80_js_gz.h │ ├── web_server.assets_config_a0694b83_css_gz.h │ ├── web_server.assets_config_f5db9a6f_js_gz.h │ ├── web_server.assets_en_f85d34d8_js_gz.h │ ├── web_server.assets_es_09a99823_js_gz.h │ ├── web_server.assets_fr_ca542547_js_gz.h │ ├── web_server.assets_hu_8280bea7_js_gz.h │ ├── web_server.assets_icons_11ca588d_js_gz.h │ ├── web_server.assets_index_7c57ba28_js_gz.h │ ├── web_server.assets_index_e83393eb_css_gz.h │ ├── web_server.assets_logo_mini_e4e21c4b_png.h │ ├── web_server.assets_vendor_143d8acd_js_gz.h │ ├── web_server.favicon_ico.h │ ├── web_server.index_html_gz.h │ ├── web_server.manifest_webmanifest.h │ ├── web_server.pwa_192x192_png.h │ ├── web_server.pwa_masquable_png.h │ ├── web_server.success_html.h │ ├── web_server.sw_js.h │ └── web_server_static_files.h └── wifi_esp32.h ├── tesla_login ├── .dockerignore ├── .eslintrc.json ├── Dockerfile ├── app.js ├── entrypoint.sh ├── example-tesla_login-apache.conf ├── package-lock.json ├── package.json ├── readme.md └── tesla_login.service ├── test ├── basic.http ├── certificates.http ├── claims.http ├── config.http ├── events.http ├── limit.http ├── ovms.http ├── rapi.http ├── schedule.http ├── serial_config.txt ├── status.http ├── tesla.http ├── time.http └── update.http └── toc.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/data/*.js 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/build_gui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.github/workflows/build_gui.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.github/workflows/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/divert_sim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.github/workflows/divert_sim.yaml -------------------------------------------------------------------------------- /.github/workflows/openapi_validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.github/workflows/openapi_validate.yaml -------------------------------------------------------------------------------- /.github/workflows/release_validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.github/workflows/release_validation.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.jshintrc -------------------------------------------------------------------------------- /.spectral.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.spectral.yaml -------------------------------------------------------------------------------- /.stoplight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.stoplight.json -------------------------------------------------------------------------------- /.stoplight/styleguide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/.stoplight/styleguide.json -------------------------------------------------------------------------------- /BootScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/BootScreen.png -------------------------------------------------------------------------------- /ChargeScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/ChargeScreen.png -------------------------------------------------------------------------------- /Developers_Guides/Developers Guide_HTTP.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/Developers_Guides/Developers Guide_HTTP.docx -------------------------------------------------------------------------------- /Developers_Guides/Developers Guide_HTTP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/Developers_Guides/Developers Guide_HTTP.pdf -------------------------------------------------------------------------------- /Developers_Guides/Developers Guide_MQTT.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/Developers_Guides/Developers Guide_MQTT.docx -------------------------------------------------------------------------------- /Developers_Guides/Developers Guide_MQTT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/Developers_Guides/Developers Guide_MQTT.pdf -------------------------------------------------------------------------------- /api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/api.yml -------------------------------------------------------------------------------- /blank_1MB.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/blank_1MB.bin -------------------------------------------------------------------------------- /boards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/boards.png -------------------------------------------------------------------------------- /divert_sim/.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf 2 | -------------------------------------------------------------------------------- /divert_sim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/.gitignore -------------------------------------------------------------------------------- /divert_sim/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/.vscode/launch.json -------------------------------------------------------------------------------- /divert_sim/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/.vscode/tasks.json -------------------------------------------------------------------------------- /divert_sim/EEPROM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/EEPROM.h -------------------------------------------------------------------------------- /divert_sim/FakeDuino/Arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/Arduino.h -------------------------------------------------------------------------------- /divert_sim/FakeDuino/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/Console.cpp -------------------------------------------------------------------------------- /divert_sim/FakeDuino/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/Console.h -------------------------------------------------------------------------------- /divert_sim/FakeDuino/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/Core.cpp -------------------------------------------------------------------------------- /divert_sim/FakeDuino/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/Core.h -------------------------------------------------------------------------------- /divert_sim/FakeDuino/FS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/FS.cpp -------------------------------------------------------------------------------- /divert_sim/FakeDuino/FS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/FS.h -------------------------------------------------------------------------------- /divert_sim/FakeDuino/FSImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/FSImpl.h -------------------------------------------------------------------------------- /divert_sim/FakeDuino/LittleFS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/LittleFS.cpp -------------------------------------------------------------------------------- /divert_sim/FakeDuino/LittleFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/LittleFS.h -------------------------------------------------------------------------------- /divert_sim/FakeDuino/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/Print.cpp -------------------------------------------------------------------------------- /divert_sim/FakeDuino/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/Print.h -------------------------------------------------------------------------------- /divert_sim/FakeDuino/Printable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/Printable.h -------------------------------------------------------------------------------- /divert_sim/FakeDuino/Serial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/Serial.cpp -------------------------------------------------------------------------------- /divert_sim/FakeDuino/Serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/Serial.h -------------------------------------------------------------------------------- /divert_sim/FakeDuino/Stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/Stream.cpp -------------------------------------------------------------------------------- /divert_sim/FakeDuino/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/Stream.h -------------------------------------------------------------------------------- /divert_sim/FakeDuino/WProgram.h: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /divert_sim/FakeDuino/WString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/WString.cpp -------------------------------------------------------------------------------- /divert_sim/FakeDuino/WString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/WString.h -------------------------------------------------------------------------------- /divert_sim/FakeDuino/vfs_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/vfs_api.cpp -------------------------------------------------------------------------------- /divert_sim/FakeDuino/vfs_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/FakeDuino/vfs_api.h -------------------------------------------------------------------------------- /divert_sim/LittleFS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/LittleFS.h -------------------------------------------------------------------------------- /divert_sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/Makefile -------------------------------------------------------------------------------- /divert_sim/Makefile.FakeDuino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/Makefile.FakeDuino -------------------------------------------------------------------------------- /divert_sim/RapiSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/RapiSender.cpp -------------------------------------------------------------------------------- /divert_sim/cxxopts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/cxxopts.hpp -------------------------------------------------------------------------------- /divert_sim/data/CloudyMorning.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/CloudyMorning.csv -------------------------------------------------------------------------------- /divert_sim/data/Energy_and_Power_Day_2020-03-22.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/Energy_and_Power_Day_2020-03-22.csv -------------------------------------------------------------------------------- /divert_sim/data/Energy_and_Power_Day_2020-03-31.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/Energy_and_Power_Day_2020-03-31.csv -------------------------------------------------------------------------------- /divert_sim/data/Energy_and_Power_Day_2020-04-01.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/Energy_and_Power_Day_2020-04-01.csv -------------------------------------------------------------------------------- /divert_sim/data/almostperfect.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/almostperfect.csv -------------------------------------------------------------------------------- /divert_sim/data/config-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/config-default.json -------------------------------------------------------------------------------- /divert_sim/data/config-inputfilter-noimport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/config-inputfilter-noimport.json -------------------------------------------------------------------------------- /divert_sim/data/config-inputfilter-nowaste.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/config-inputfilter-nowaste.json -------------------------------------------------------------------------------- /divert_sim/data/day1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/day1.csv -------------------------------------------------------------------------------- /divert_sim/data/day1_grid_ie.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/day1_grid_ie.csv -------------------------------------------------------------------------------- /divert_sim/data/day2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/day2.csv -------------------------------------------------------------------------------- /divert_sim/data/day2_grid_ie.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/day2_grid_ie.csv -------------------------------------------------------------------------------- /divert_sim/data/day3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/day3.csv -------------------------------------------------------------------------------- /divert_sim/data/day3_grid_ie.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/day3_grid_ie.csv -------------------------------------------------------------------------------- /divert_sim/data/solar-vrms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/solar-vrms.csv -------------------------------------------------------------------------------- /divert_sim/data/test_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/data/test_config.json -------------------------------------------------------------------------------- /divert_sim/divert_sim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/divert_sim.cpp -------------------------------------------------------------------------------- /divert_sim/interactive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/interactive.html -------------------------------------------------------------------------------- /divert_sim/output/CloudyMorning_master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/output/CloudyMorning_master.csv -------------------------------------------------------------------------------- /divert_sim/output/Energy_and_Power_Day_2020-03-22_master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/output/Energy_and_Power_Day_2020-03-22_master.csv -------------------------------------------------------------------------------- /divert_sim/output/Energy_and_Power_Day_2020-03-31_master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/output/Energy_and_Power_Day_2020-03-31_master.csv -------------------------------------------------------------------------------- /divert_sim/output/Energy_and_Power_Day_2020-04-01_master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/output/Energy_and_Power_Day_2020-04-01_master.csv -------------------------------------------------------------------------------- /divert_sim/output/almostperfect_master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/output/almostperfect_master.csv -------------------------------------------------------------------------------- /divert_sim/output/day1_grid_ie_master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/output/day1_grid_ie_master.csv -------------------------------------------------------------------------------- /divert_sim/output/day1_master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/output/day1_master.csv -------------------------------------------------------------------------------- /divert_sim/output/day2_grid_ie_master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/output/day2_grid_ie_master.csv -------------------------------------------------------------------------------- /divert_sim/output/day2_master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/output/day2_master.csv -------------------------------------------------------------------------------- /divert_sim/output/day3_grid_ie_master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/output/day3_grid_ie_master.csv -------------------------------------------------------------------------------- /divert_sim/output/day3_master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/output/day3_master.csv -------------------------------------------------------------------------------- /divert_sim/output/solar-vrms_master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/output/solar-vrms_master.csv -------------------------------------------------------------------------------- /divert_sim/output/summary_master.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/output/summary_master.csv -------------------------------------------------------------------------------- /divert_sim/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/parser.hpp -------------------------------------------------------------------------------- /divert_sim/requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | simplejson 3 | -------------------------------------------------------------------------------- /divert_sim/run_simulations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/run_simulations.py -------------------------------------------------------------------------------- /divert_sim/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/server.py -------------------------------------------------------------------------------- /divert_sim/simulations.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/simulations.css -------------------------------------------------------------------------------- /divert_sim/simulations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/simulations.js -------------------------------------------------------------------------------- /divert_sim/test.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/test.http -------------------------------------------------------------------------------- /divert_sim/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/test_config.py -------------------------------------------------------------------------------- /divert_sim/test_divert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/test_divert.py -------------------------------------------------------------------------------- /divert_sim/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/divert_sim/view.html -------------------------------------------------------------------------------- /docs/developer-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/developer-guide.md -------------------------------------------------------------------------------- /docs/divert-advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/divert-advanced.png -------------------------------------------------------------------------------- /docs/divert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/divert.png -------------------------------------------------------------------------------- /docs/eco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/eco.png -------------------------------------------------------------------------------- /docs/esp32-gateway-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/esp32-gateway-connected.png -------------------------------------------------------------------------------- /docs/esp32-gateway-connections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/esp32-gateway-connections.jpg -------------------------------------------------------------------------------- /docs/esp32-gateway-emonevse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/esp32-gateway-emonevse.jpg -------------------------------------------------------------------------------- /docs/esp32-gateway-prewired.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/esp32-gateway-prewired.jpg -------------------------------------------------------------------------------- /docs/main2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/main2.png -------------------------------------------------------------------------------- /docs/mqtt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/mqtt.md -------------------------------------------------------------------------------- /docs/openevse-wifi-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/openevse-wifi-modules.png -------------------------------------------------------------------------------- /docs/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/process.md -------------------------------------------------------------------------------- /docs/rapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/rapi.md -------------------------------------------------------------------------------- /docs/services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/services.png -------------------------------------------------------------------------------- /docs/user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/user-guide.md -------------------------------------------------------------------------------- /docs/wifi-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/wifi-connect.png -------------------------------------------------------------------------------- /docs/wifi-scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/wifi-scan.png -------------------------------------------------------------------------------- /docs/wired-ethernet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/docs/wired-ethernet.md -------------------------------------------------------------------------------- /gui-tft/access_point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/access_point.png -------------------------------------------------------------------------------- /gui-tft/access_point_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/access_point_connected.png -------------------------------------------------------------------------------- /gui-tft/button_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/button_bar.png -------------------------------------------------------------------------------- /gui-tft/car_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/car_connected.png -------------------------------------------------------------------------------- /gui-tft/car_disconnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/car_disconnected.png -------------------------------------------------------------------------------- /gui-tft/charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/charging.png -------------------------------------------------------------------------------- /gui-tft/connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/connected.png -------------------------------------------------------------------------------- /gui-tft/disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/disabled.png -------------------------------------------------------------------------------- /gui-tft/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/error.png -------------------------------------------------------------------------------- /gui-tft/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/lock.png -------------------------------------------------------------------------------- /gui-tft/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/logo.png -------------------------------------------------------------------------------- /gui-tft/no_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/no_wifi.png -------------------------------------------------------------------------------- /gui-tft/not_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/not_connected.png -------------------------------------------------------------------------------- /gui-tft/sleeping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/sleeping.png -------------------------------------------------------------------------------- /gui-tft/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/start.png -------------------------------------------------------------------------------- /gui-tft/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/gui-tft/wifi.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/jsconfig.json -------------------------------------------------------------------------------- /lib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/lib/readme.txt -------------------------------------------------------------------------------- /min_spiffs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/min_spiffs.csv -------------------------------------------------------------------------------- /min_spiffs_debug.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/min_spiffs_debug.csv -------------------------------------------------------------------------------- /models/Certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/models/Certificate.yaml -------------------------------------------------------------------------------- /models/Claim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/models/Claim.yaml -------------------------------------------------------------------------------- /models/Config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/models/Config.yaml -------------------------------------------------------------------------------- /models/EvseState.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/models/EvseState.yaml -------------------------------------------------------------------------------- /models/Limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/models/Limit.yaml -------------------------------------------------------------------------------- /models/Properties.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/models/Properties.yaml -------------------------------------------------------------------------------- /models/Status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/models/Status.yaml -------------------------------------------------------------------------------- /openevse_16mb.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/openevse_16mb.csv -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/platformio.ini -------------------------------------------------------------------------------- /prepare-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/prepare-release.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/auto_fw_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/scripts/auto_fw_version.py -------------------------------------------------------------------------------- /scripts/ci_arduino.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/scripts/ci_arduino.sh -------------------------------------------------------------------------------- /scripts/ci_platformio.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/scripts/ci_platformio.sh -------------------------------------------------------------------------------- /scripts/extra_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/scripts/extra_script.py -------------------------------------------------------------------------------- /src/LedManagerTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/LedManagerTask.cpp -------------------------------------------------------------------------------- /src/LedManagerTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/LedManagerTask.h -------------------------------------------------------------------------------- /src/app_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/app_config.cpp -------------------------------------------------------------------------------- /src/app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/app_config.h -------------------------------------------------------------------------------- /src/app_config_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/app_config_mode.h -------------------------------------------------------------------------------- /src/app_config_mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/app_config_mqtt.h -------------------------------------------------------------------------------- /src/app_config_v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/app_config_v1.cpp -------------------------------------------------------------------------------- /src/certificates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/certificates.cpp -------------------------------------------------------------------------------- /src/certificates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/certificates.h -------------------------------------------------------------------------------- /src/current_shaper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/current_shaper.cpp -------------------------------------------------------------------------------- /src/current_shaper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/current_shaper.h -------------------------------------------------------------------------------- /src/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/debug.cpp -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/divert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/divert.cpp -------------------------------------------------------------------------------- /src/divert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/divert.h -------------------------------------------------------------------------------- /src/embedded_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/embedded_files.cpp -------------------------------------------------------------------------------- /src/embedded_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/embedded_files.h -------------------------------------------------------------------------------- /src/emoncms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/emoncms.cpp -------------------------------------------------------------------------------- /src/emoncms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/emoncms.h -------------------------------------------------------------------------------- /src/emonesp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/emonesp.h -------------------------------------------------------------------------------- /src/energy_meter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/energy_meter.cpp -------------------------------------------------------------------------------- /src/energy_meter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/energy_meter.h -------------------------------------------------------------------------------- /src/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/event.h -------------------------------------------------------------------------------- /src/event_log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/event_log.cpp -------------------------------------------------------------------------------- /src/event_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/event_log.h -------------------------------------------------------------------------------- /src/evse_man.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/evse_man.cpp -------------------------------------------------------------------------------- /src/evse_man.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/evse_man.h -------------------------------------------------------------------------------- /src/evse_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/evse_monitor.cpp -------------------------------------------------------------------------------- /src/evse_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/evse_monitor.h -------------------------------------------------------------------------------- /src/evse_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/evse_state.h -------------------------------------------------------------------------------- /src/http_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/http_update.cpp -------------------------------------------------------------------------------- /src/http_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/http_update.h -------------------------------------------------------------------------------- /src/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/input.cpp -------------------------------------------------------------------------------- /src/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/input.h -------------------------------------------------------------------------------- /src/input_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/input_filter.cpp -------------------------------------------------------------------------------- /src/input_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/input_filter.h -------------------------------------------------------------------------------- /src/json_serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/json_serialize.h -------------------------------------------------------------------------------- /src/lcd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd.cpp -------------------------------------------------------------------------------- /src/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd.h -------------------------------------------------------------------------------- /src/lcd_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_common.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.access_point_connected_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.access_point_connected_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.access_point_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.access_point_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.button_bar_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.button_bar_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.car_connected_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.car_connected_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.car_disconnected_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.car_disconnected_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.charging_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.charging_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.connected_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.connected_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.disabled_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.disabled_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.error_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.error_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.lock_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.lock_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.logo_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.logo_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.no_wifi_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.no_wifi_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.not_connected_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.not_connected_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.sleeping_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.sleeping_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.start_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.start_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui.wifi_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui.wifi_png.h -------------------------------------------------------------------------------- /src/lcd_static/lcd_gui_static_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_static/lcd_gui_static_files.h -------------------------------------------------------------------------------- /src/lcd_tft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_tft.cpp -------------------------------------------------------------------------------- /src/lcd_tft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/lcd_tft.h -------------------------------------------------------------------------------- /src/legacy_support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/legacy_support.cpp -------------------------------------------------------------------------------- /src/legacy_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/legacy_support.h -------------------------------------------------------------------------------- /src/limit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/limit.cpp -------------------------------------------------------------------------------- /src/limit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/limit.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/manual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/manual.cpp -------------------------------------------------------------------------------- /src/manual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/manual.h -------------------------------------------------------------------------------- /src/mqtt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/mqtt.cpp -------------------------------------------------------------------------------- /src/mqtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/mqtt.h -------------------------------------------------------------------------------- /src/net_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/net_manager.cpp -------------------------------------------------------------------------------- /src/net_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/net_manager.h -------------------------------------------------------------------------------- /src/ocpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/ocpp.cpp -------------------------------------------------------------------------------- /src/ocpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/ocpp.h -------------------------------------------------------------------------------- /src/ohm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/ohm.cpp -------------------------------------------------------------------------------- /src/ohm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/ohm.h -------------------------------------------------------------------------------- /src/ota.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/ota.cpp -------------------------------------------------------------------------------- /src/ota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/ota.h -------------------------------------------------------------------------------- /src/pn532.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/pn532.cpp -------------------------------------------------------------------------------- /src/pn532.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/pn532.h -------------------------------------------------------------------------------- /src/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/profile.h -------------------------------------------------------------------------------- /src/rfid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/rfid.cpp -------------------------------------------------------------------------------- /src/rfid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/rfid.h -------------------------------------------------------------------------------- /src/root_ca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/root_ca.cpp -------------------------------------------------------------------------------- /src/root_ca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/root_ca.h -------------------------------------------------------------------------------- /src/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/scheduler.cpp -------------------------------------------------------------------------------- /src/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/scheduler.h -------------------------------------------------------------------------------- /src/screens/screen_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/screens/screen_base.h -------------------------------------------------------------------------------- /src/screens/screen_boot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/screens/screen_boot.cpp -------------------------------------------------------------------------------- /src/screens/screen_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/screens/screen_boot.h -------------------------------------------------------------------------------- /src/screens/screen_charge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/screens/screen_charge.cpp -------------------------------------------------------------------------------- /src/screens/screen_charge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/screens/screen_charge.h -------------------------------------------------------------------------------- /src/screens/screen_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/screens/screen_factory.h -------------------------------------------------------------------------------- /src/screens/screen_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/screens/screen_lock.cpp -------------------------------------------------------------------------------- /src/screens/screen_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/screens/screen_lock.h -------------------------------------------------------------------------------- /src/screens/screen_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/screens/screen_manager.cpp -------------------------------------------------------------------------------- /src/screens/screen_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/screens/screen_manager.h -------------------------------------------------------------------------------- /src/screens/screen_renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/screens/screen_renderer.cpp -------------------------------------------------------------------------------- /src/screens/screen_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/screens/screen_renderer.h -------------------------------------------------------------------------------- /src/tesla_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/tesla_client.cpp -------------------------------------------------------------------------------- /src/tesla_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/tesla_client.h -------------------------------------------------------------------------------- /src/time_man.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/time_man.cpp -------------------------------------------------------------------------------- /src/time_man.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/time_man.h -------------------------------------------------------------------------------- /src/web_server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_server.cpp -------------------------------------------------------------------------------- /src/web_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_server.h -------------------------------------------------------------------------------- /src/web_server_certificates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_server_certificates.cpp -------------------------------------------------------------------------------- /src/web_server_claims.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_server_claims.cpp -------------------------------------------------------------------------------- /src/web_server_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_server_config.cpp -------------------------------------------------------------------------------- /src/web_server_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_server_events.cpp -------------------------------------------------------------------------------- /src/web_server_static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_server_static.cpp -------------------------------------------------------------------------------- /src/web_server_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_server_static.h -------------------------------------------------------------------------------- /src/web_server_time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_server_time.cpp -------------------------------------------------------------------------------- /src/web_server_update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_server_update.cpp -------------------------------------------------------------------------------- /src/web_static/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/readme.md -------------------------------------------------------------------------------- /src/web_static/web_server.assets_components_bb056724_css_gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.assets_components_bb056724_css_gz.h -------------------------------------------------------------------------------- /src/web_static/web_server.assets_components_ce5bee80_js_gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.assets_components_ce5bee80_js_gz.h -------------------------------------------------------------------------------- /src/web_static/web_server.assets_config_a0694b83_css_gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.assets_config_a0694b83_css_gz.h -------------------------------------------------------------------------------- /src/web_static/web_server.assets_config_f5db9a6f_js_gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.assets_config_f5db9a6f_js_gz.h -------------------------------------------------------------------------------- /src/web_static/web_server.assets_en_f85d34d8_js_gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.assets_en_f85d34d8_js_gz.h -------------------------------------------------------------------------------- /src/web_static/web_server.assets_es_09a99823_js_gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.assets_es_09a99823_js_gz.h -------------------------------------------------------------------------------- /src/web_static/web_server.assets_fr_ca542547_js_gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.assets_fr_ca542547_js_gz.h -------------------------------------------------------------------------------- /src/web_static/web_server.assets_hu_8280bea7_js_gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.assets_hu_8280bea7_js_gz.h -------------------------------------------------------------------------------- /src/web_static/web_server.assets_icons_11ca588d_js_gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.assets_icons_11ca588d_js_gz.h -------------------------------------------------------------------------------- /src/web_static/web_server.assets_index_7c57ba28_js_gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.assets_index_7c57ba28_js_gz.h -------------------------------------------------------------------------------- /src/web_static/web_server.assets_index_e83393eb_css_gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.assets_index_e83393eb_css_gz.h -------------------------------------------------------------------------------- /src/web_static/web_server.assets_logo_mini_e4e21c4b_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.assets_logo_mini_e4e21c4b_png.h -------------------------------------------------------------------------------- /src/web_static/web_server.assets_vendor_143d8acd_js_gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.assets_vendor_143d8acd_js_gz.h -------------------------------------------------------------------------------- /src/web_static/web_server.favicon_ico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.favicon_ico.h -------------------------------------------------------------------------------- /src/web_static/web_server.index_html_gz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.index_html_gz.h -------------------------------------------------------------------------------- /src/web_static/web_server.manifest_webmanifest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.manifest_webmanifest.h -------------------------------------------------------------------------------- /src/web_static/web_server.pwa_192x192_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.pwa_192x192_png.h -------------------------------------------------------------------------------- /src/web_static/web_server.pwa_masquable_png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.pwa_masquable_png.h -------------------------------------------------------------------------------- /src/web_static/web_server.success_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.success_html.h -------------------------------------------------------------------------------- /src/web_static/web_server.sw_js.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server.sw_js.h -------------------------------------------------------------------------------- /src/web_static/web_server_static_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/web_static/web_server_static_files.h -------------------------------------------------------------------------------- /src/wifi_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/src/wifi_esp32.h -------------------------------------------------------------------------------- /tesla_login/.dockerignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | .git 3 | node_modules 4 | -------------------------------------------------------------------------------- /tesla_login/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/tesla_login/.eslintrc.json -------------------------------------------------------------------------------- /tesla_login/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/tesla_login/Dockerfile -------------------------------------------------------------------------------- /tesla_login/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/tesla_login/app.js -------------------------------------------------------------------------------- /tesla_login/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/tesla_login/entrypoint.sh -------------------------------------------------------------------------------- /tesla_login/example-tesla_login-apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/tesla_login/example-tesla_login-apache.conf -------------------------------------------------------------------------------- /tesla_login/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/tesla_login/package-lock.json -------------------------------------------------------------------------------- /tesla_login/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/tesla_login/package.json -------------------------------------------------------------------------------- /tesla_login/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/tesla_login/readme.md -------------------------------------------------------------------------------- /tesla_login/tesla_login.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/tesla_login/tesla_login.service -------------------------------------------------------------------------------- /test/basic.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/basic.http -------------------------------------------------------------------------------- /test/certificates.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/certificates.http -------------------------------------------------------------------------------- /test/claims.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/claims.http -------------------------------------------------------------------------------- /test/config.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/config.http -------------------------------------------------------------------------------- /test/events.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/events.http -------------------------------------------------------------------------------- /test/limit.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/limit.http -------------------------------------------------------------------------------- /test/ovms.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/ovms.http -------------------------------------------------------------------------------- /test/rapi.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/rapi.http -------------------------------------------------------------------------------- /test/schedule.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/schedule.http -------------------------------------------------------------------------------- /test/serial_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/serial_config.txt -------------------------------------------------------------------------------- /test/status.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/status.http -------------------------------------------------------------------------------- /test/tesla.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/tesla.http -------------------------------------------------------------------------------- /test/time.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/time.http -------------------------------------------------------------------------------- /test/update.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/test/update.http -------------------------------------------------------------------------------- /toc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenEVSE/openevse_esp32_firmware/HEAD/toc.json --------------------------------------------------------------------------------