├── .github ├── FUNDING copy.yml ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── config.yml │ ├── feature_request.yaml │ ├── help.yaml │ └── working_device.yaml └── workflows │ ├── ISSUE_WORKFLOW.yaml │ └── update_central_repo.yml ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── Protocol ├── BlueSolar-HEX-protocol.pdf ├── VE.Direct-Protocol-3.33.pdf ├── vicASCII.log ├── vicHEX.log └── viread.log ├── README.md ├── include └── readme.md ├── notes ├── platformio.ini ├── src ├── RTCMemory.h ├── Settings.h ├── VeDirectDataList.h ├── VeDirectDeviceCodes.h ├── VeDirectDeviceList.h ├── VeDirectFrameHandler.cpp ├── VeDirectFrameHandler.h ├── htmlProzessor.h ├── main.cpp ├── main.h ├── status-LED.h └── webpages │ ├── HTML_BACKUPRESTORE.html │ ├── HTML_CONFIRM_RESET.html │ ├── HTML_FOOT.html │ ├── HTML_HEAD.html │ ├── HTML_MAIN.html │ ├── HTML_REBOOT.html │ ├── HTML_SETTINGS.html │ └── HTML_SETTINGS_EDIT.html └── tools ├── mini_html.py ├── post_compile.py └── pre_compile.py /.github/FUNDING copy.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://donate.softwarecrash.de'] 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://donate.softwarecrash.de'] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/.github/ISSUE_TEMPLATE/feature_request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/help.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/.github/ISSUE_TEMPLATE/help.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/working_device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/.github/ISSUE_TEMPLATE/working_device.yaml -------------------------------------------------------------------------------- /.github/workflows/ISSUE_WORKFLOW.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/.github/workflows/ISSUE_WORKFLOW.yaml -------------------------------------------------------------------------------- /.github/workflows/update_central_repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/.github/workflows/update_central_repo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/LICENSE -------------------------------------------------------------------------------- /Protocol/BlueSolar-HEX-protocol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/Protocol/BlueSolar-HEX-protocol.pdf -------------------------------------------------------------------------------- /Protocol/VE.Direct-Protocol-3.33.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/Protocol/VE.Direct-Protocol-3.33.pdf -------------------------------------------------------------------------------- /Protocol/vicASCII.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/Protocol/vicASCII.log -------------------------------------------------------------------------------- /Protocol/vicHEX.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/Protocol/vicHEX.log -------------------------------------------------------------------------------- /Protocol/viread.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/Protocol/viread.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/README.md -------------------------------------------------------------------------------- /include/readme.md: -------------------------------------------------------------------------------- 1 | for pushing tree -------------------------------------------------------------------------------- /notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/notes -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/platformio.ini -------------------------------------------------------------------------------- /src/RTCMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/RTCMemory.h -------------------------------------------------------------------------------- /src/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/Settings.h -------------------------------------------------------------------------------- /src/VeDirectDataList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/VeDirectDataList.h -------------------------------------------------------------------------------- /src/VeDirectDeviceCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/VeDirectDeviceCodes.h -------------------------------------------------------------------------------- /src/VeDirectDeviceList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/VeDirectDeviceList.h -------------------------------------------------------------------------------- /src/VeDirectFrameHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/VeDirectFrameHandler.cpp -------------------------------------------------------------------------------- /src/VeDirectFrameHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/VeDirectFrameHandler.h -------------------------------------------------------------------------------- /src/htmlProzessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/htmlProzessor.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/main.h -------------------------------------------------------------------------------- /src/status-LED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/status-LED.h -------------------------------------------------------------------------------- /src/webpages/HTML_BACKUPRESTORE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/webpages/HTML_BACKUPRESTORE.html -------------------------------------------------------------------------------- /src/webpages/HTML_CONFIRM_RESET.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/webpages/HTML_CONFIRM_RESET.html -------------------------------------------------------------------------------- /src/webpages/HTML_FOOT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/webpages/HTML_FOOT.html -------------------------------------------------------------------------------- /src/webpages/HTML_HEAD.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/webpages/HTML_HEAD.html -------------------------------------------------------------------------------- /src/webpages/HTML_MAIN.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/webpages/HTML_MAIN.html -------------------------------------------------------------------------------- /src/webpages/HTML_REBOOT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/webpages/HTML_REBOOT.html -------------------------------------------------------------------------------- /src/webpages/HTML_SETTINGS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/webpages/HTML_SETTINGS.html -------------------------------------------------------------------------------- /src/webpages/HTML_SETTINGS_EDIT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/src/webpages/HTML_SETTINGS_EDIT.html -------------------------------------------------------------------------------- /tools/mini_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/tools/mini_html.py -------------------------------------------------------------------------------- /tools/post_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/tools/post_compile.py -------------------------------------------------------------------------------- /tools/pre_compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softwarecrash/Victron2MQTT/HEAD/tools/pre_compile.py --------------------------------------------------------------------------------