├── .github └── workflows │ └── main.yml ├── .gitignore ├── .idea └── AquaMQTT.iml ├── AquaMQTT ├── .clang-format ├── .gitignore ├── .idea │ ├── .gitignore │ ├── AquaMQTT.iml │ ├── codeStyles │ │ └── codeStyleConfig.xml │ ├── editor.xml │ ├── misc.xml │ └── vcs.xml ├── README.md ├── include │ ├── Version.h │ ├── buffer │ │ └── FrameBuffer.h │ ├── config │ │ ├── Configuration.h │ │ ├── ExampleConfiguration.h │ │ └── Modes.h │ ├── handler │ │ ├── OTA.h │ │ ├── RTC.h │ │ └── Wifi.h │ ├── state │ │ ├── DHWState.h │ │ ├── HMIStateProxy.h │ │ └── MainStateProxy.h │ └── task │ │ ├── ControllerTask.h │ │ ├── HMITask.h │ │ ├── ListenerTask.h │ │ └── MQTTTask.h ├── lib │ └── AtlanticSerialProtocol │ │ ├── include │ │ ├── message │ │ │ ├── Factory.h │ │ │ ├── IEnergyMessage.h │ │ │ ├── IErrorMessage.h │ │ │ ├── IExtraMessage.h │ │ │ ├── IHMIMessage.h │ │ │ ├── IMainMessage.h │ │ │ ├── MessageConstants.h │ │ │ ├── legacy │ │ │ │ ├── ErrorMessage.h │ │ │ │ ├── HMIMessage.h │ │ │ │ ├── MainEnergyMessage.h │ │ │ │ └── MainStatusMessage.h │ │ │ ├── next │ │ │ │ ├── ErrorMessage.h │ │ │ │ ├── HMIMessage.h │ │ │ │ ├── MainEnergyMessage.h │ │ │ │ └── MainStatusMessage.h │ │ │ └── odyssee │ │ │ │ ├── ErrorMessage.h │ │ │ │ ├── ExtraMessage.h │ │ │ │ ├── HMIMessage.h │ │ │ │ ├── MainEnergyMessage.h │ │ │ │ └── MainStatusMessage.h │ │ └── mqtt │ │ │ ├── IMQTTCallback.h │ │ │ ├── MQTTDefinitions.h │ │ │ └── MQTTDiscovery.h │ │ └── src │ │ └── message │ │ ├── legacy │ │ ├── ErrorMessage.cpp │ │ ├── HMIMessage.cpp │ │ ├── MainEnergyMessage.cpp │ │ └── MainStatusMessage.cpp │ │ ├── next │ │ ├── ErrorMessage.cpp │ │ ├── HMIMessage.cpp │ │ ├── MainEnergyMessage.cpp │ │ └── MainStatusMessage.cpp │ │ └── odyssee │ │ ├── ErrorMessage.cpp │ │ ├── ExtraMessage.cpp │ │ ├── HMIMessage.cpp │ │ ├── MainEnergyMessage.cpp │ │ └── MainStatusMessage.cpp ├── platformio.ini ├── src │ ├── buffer │ │ └── FrameBuffer.cpp │ ├── handler │ │ ├── OTA.cpp │ │ ├── RTC.cpp │ │ └── Wifi.cpp │ ├── main.cpp │ ├── state │ │ ├── DHWState.cpp │ │ ├── HMIStateProxy.cpp │ │ └── MainStateProxy.cpp │ └── task │ │ ├── ControllerTask.cpp │ │ ├── HMITask.cpp │ │ ├── ListenerTask.cpp │ │ ├── MITM.md │ │ └── MQTTTask.cpp └── test │ ├── DHWDataTypesTest.cpp │ ├── README │ ├── main.cpp │ └── test_protocol │ ├── HMIProtocolTest.cpp │ └── include │ └── ProtocolTestData.h ├── DEVICES.md ├── HOMEASSISTANT.md ├── LICENSE ├── MQTT.md ├── PROTOCOL.md ├── PROTOCOL_NEXT.md ├── PROTOCOL_ODYSSEE.md ├── README-PV.md ├── README.md ├── TROUBLESHOOTING.md ├── WIRING.md ├── aquamqtt.yaml ├── img ├── Wärmepumpe_Auto.png ├── Wärmepumpe_Heat.png ├── Wärmepumpe_Profille_select.png ├── aquamqtt.jpg ├── board_back.png ├── board_front.png ├── board_v2_back.png ├── board_v2_front.png ├── hmi.jpg ├── hmi_controller_back.jpg ├── homeassistant.png ├── installed.jpg ├── main_controller.jpg ├── nohmi1.png ├── nohmi2.png ├── sequence.png ├── wired_up.jpg └── wired_up_rev2.jpg ├── pcb ├── .gitignore ├── AquaMQTT.kicad_pcb ├── AquaMQTT.kicad_prl ├── AquaMQTT.kicad_pro ├── AquaMQTT.kicad_sch ├── README.md ├── fp-lib-table ├── rast.kicad_sym ├── rast.pretty │ └── RAST_3517-06_(2.5MM)_2 COPY.kicad_mod ├── sym-lib-table ├── v1.0 │ └── AquaMQTT_Board_Revision_v1.zip └── v2.0 │ ├── AquaMQTT_Board_Revision_v2.zip │ ├── AquaMQTT_Board_Revision_v2_BOM.csv │ └── AquaMQTT_Board_Revision_v2_CPL.csv ├── prototypes ├── AquaMqttLogger │ ├── .clang-format │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── codeStyles │ │ │ ├── Project.xml │ │ │ └── codeStyleConfig.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── README.md │ ├── include │ │ ├── ESPLink.h │ │ ├── FrameBuffer.h │ │ ├── FrameHandler.h │ │ ├── HMIState.h │ │ ├── MQTTDefinitions.h │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ ├── src │ │ ├── ESPLink.cpp │ │ ├── FrameBuffer.cpp │ │ ├── FrameHandler.cpp │ │ ├── HMIState.cpp │ │ └── main.cpp │ └── test │ │ └── README ├── AquaSimuUno │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── misc.xml │ │ └── vcs.xml │ ├── README.md │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ ├── src │ │ └── main.cpp │ └── test │ │ └── README └── NextSimulator │ ├── .gitignore │ ├── .idea │ ├── .gitignore │ ├── .name │ ├── misc.xml │ └── vcs.xml │ ├── README.md │ ├── include │ └── README │ ├── lib │ └── README │ ├── platformio.ini │ ├── src │ └── main.cpp │ └── test │ └── README └── tools ├── AquaDebug ├── .clang-format ├── .gitignore ├── .idea │ ├── .gitignore │ ├── codeStyles │ │ ├── Project.xml │ │ └── codeStyleConfig.xml │ ├── misc.xml │ └── vcs.xml ├── README.md ├── collect.py ├── include │ ├── config │ │ ├── Configuration.h │ │ └── ExampleConfiguration.h │ ├── handler │ │ ├── OTA.h │ │ └── Wifi.h │ └── mqtt │ │ └── MQTTDefinitions.h ├── platformio.ini ├── src │ ├── handler │ │ ├── OTA.cpp │ │ └── Wifi.cpp │ └── main.cpp └── test │ ├── README │ └── main.cpp └── debug.py /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store -------------------------------------------------------------------------------- /.idea/AquaMQTT.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/.idea/AquaMQTT.iml -------------------------------------------------------------------------------- /AquaMQTT/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/.clang-format -------------------------------------------------------------------------------- /AquaMQTT/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/.gitignore -------------------------------------------------------------------------------- /AquaMQTT/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/.idea/.gitignore -------------------------------------------------------------------------------- /AquaMQTT/.idea/AquaMQTT.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/.idea/AquaMQTT.iml -------------------------------------------------------------------------------- /AquaMQTT/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /AquaMQTT/.idea/editor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/.idea/editor.xml -------------------------------------------------------------------------------- /AquaMQTT/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/.idea/misc.xml -------------------------------------------------------------------------------- /AquaMQTT/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/.idea/vcs.xml -------------------------------------------------------------------------------- /AquaMQTT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/README.md -------------------------------------------------------------------------------- /AquaMQTT/include/Version.h: -------------------------------------------------------------------------------- 1 | namespace aquamqtt 2 | { 3 | constexpr char VERSION[] = "v1.8.1"; 4 | } -------------------------------------------------------------------------------- /AquaMQTT/include/buffer/FrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/buffer/FrameBuffer.h -------------------------------------------------------------------------------- /AquaMQTT/include/config/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/config/Configuration.h -------------------------------------------------------------------------------- /AquaMQTT/include/config/ExampleConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/config/ExampleConfiguration.h -------------------------------------------------------------------------------- /AquaMQTT/include/config/Modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/config/Modes.h -------------------------------------------------------------------------------- /AquaMQTT/include/handler/OTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/handler/OTA.h -------------------------------------------------------------------------------- /AquaMQTT/include/handler/RTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/handler/RTC.h -------------------------------------------------------------------------------- /AquaMQTT/include/handler/Wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/handler/Wifi.h -------------------------------------------------------------------------------- /AquaMQTT/include/state/DHWState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/state/DHWState.h -------------------------------------------------------------------------------- /AquaMQTT/include/state/HMIStateProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/state/HMIStateProxy.h -------------------------------------------------------------------------------- /AquaMQTT/include/state/MainStateProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/state/MainStateProxy.h -------------------------------------------------------------------------------- /AquaMQTT/include/task/ControllerTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/task/ControllerTask.h -------------------------------------------------------------------------------- /AquaMQTT/include/task/HMITask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/task/HMITask.h -------------------------------------------------------------------------------- /AquaMQTT/include/task/ListenerTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/task/ListenerTask.h -------------------------------------------------------------------------------- /AquaMQTT/include/task/MQTTTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/include/task/MQTTTask.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/Factory.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/IEnergyMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/IEnergyMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/IErrorMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/IErrorMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/IExtraMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/IExtraMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/IHMIMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/IHMIMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/IMainMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/IMainMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/MessageConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/MessageConstants.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/legacy/ErrorMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/legacy/ErrorMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/legacy/HMIMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/legacy/HMIMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/legacy/MainEnergyMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/legacy/MainEnergyMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/legacy/MainStatusMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/legacy/MainStatusMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/next/ErrorMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/next/ErrorMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/next/HMIMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/next/HMIMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/next/MainEnergyMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/next/MainEnergyMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/next/MainStatusMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/next/MainStatusMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/odyssee/ErrorMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/odyssee/ErrorMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/odyssee/ExtraMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/odyssee/ExtraMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/odyssee/HMIMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/odyssee/HMIMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/odyssee/MainEnergyMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/odyssee/MainEnergyMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/message/odyssee/MainStatusMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/message/odyssee/MainStatusMessage.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/mqtt/IMQTTCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/mqtt/IMQTTCallback.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/mqtt/MQTTDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/mqtt/MQTTDefinitions.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/include/mqtt/MQTTDiscovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/include/mqtt/MQTTDiscovery.h -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/src/message/legacy/ErrorMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/src/message/legacy/ErrorMessage.cpp -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/src/message/legacy/HMIMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/src/message/legacy/HMIMessage.cpp -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/src/message/legacy/MainEnergyMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/src/message/legacy/MainEnergyMessage.cpp -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/src/message/legacy/MainStatusMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/src/message/legacy/MainStatusMessage.cpp -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/src/message/next/ErrorMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/src/message/next/ErrorMessage.cpp -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/src/message/next/HMIMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/src/message/next/HMIMessage.cpp -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/src/message/next/MainEnergyMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/src/message/next/MainEnergyMessage.cpp -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/src/message/next/MainStatusMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/src/message/next/MainStatusMessage.cpp -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/src/message/odyssee/ErrorMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/src/message/odyssee/ErrorMessage.cpp -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/src/message/odyssee/ExtraMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/src/message/odyssee/ExtraMessage.cpp -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/src/message/odyssee/HMIMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/src/message/odyssee/HMIMessage.cpp -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/src/message/odyssee/MainEnergyMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/src/message/odyssee/MainEnergyMessage.cpp -------------------------------------------------------------------------------- /AquaMQTT/lib/AtlanticSerialProtocol/src/message/odyssee/MainStatusMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/lib/AtlanticSerialProtocol/src/message/odyssee/MainStatusMessage.cpp -------------------------------------------------------------------------------- /AquaMQTT/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/platformio.ini -------------------------------------------------------------------------------- /AquaMQTT/src/buffer/FrameBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/src/buffer/FrameBuffer.cpp -------------------------------------------------------------------------------- /AquaMQTT/src/handler/OTA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/src/handler/OTA.cpp -------------------------------------------------------------------------------- /AquaMQTT/src/handler/RTC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/src/handler/RTC.cpp -------------------------------------------------------------------------------- /AquaMQTT/src/handler/Wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/src/handler/Wifi.cpp -------------------------------------------------------------------------------- /AquaMQTT/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/src/main.cpp -------------------------------------------------------------------------------- /AquaMQTT/src/state/DHWState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/src/state/DHWState.cpp -------------------------------------------------------------------------------- /AquaMQTT/src/state/HMIStateProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/src/state/HMIStateProxy.cpp -------------------------------------------------------------------------------- /AquaMQTT/src/state/MainStateProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/src/state/MainStateProxy.cpp -------------------------------------------------------------------------------- /AquaMQTT/src/task/ControllerTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/src/task/ControllerTask.cpp -------------------------------------------------------------------------------- /AquaMQTT/src/task/HMITask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/src/task/HMITask.cpp -------------------------------------------------------------------------------- /AquaMQTT/src/task/ListenerTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/src/task/ListenerTask.cpp -------------------------------------------------------------------------------- /AquaMQTT/src/task/MITM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/src/task/MITM.md -------------------------------------------------------------------------------- /AquaMQTT/src/task/MQTTTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/src/task/MQTTTask.cpp -------------------------------------------------------------------------------- /AquaMQTT/test/DHWDataTypesTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/test/DHWDataTypesTest.cpp -------------------------------------------------------------------------------- /AquaMQTT/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/test/README -------------------------------------------------------------------------------- /AquaMQTT/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/test/main.cpp -------------------------------------------------------------------------------- /AquaMQTT/test/test_protocol/HMIProtocolTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/test/test_protocol/HMIProtocolTest.cpp -------------------------------------------------------------------------------- /AquaMQTT/test/test_protocol/include/ProtocolTestData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/AquaMQTT/test/test_protocol/include/ProtocolTestData.h -------------------------------------------------------------------------------- /DEVICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/DEVICES.md -------------------------------------------------------------------------------- /HOMEASSISTANT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/HOMEASSISTANT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/LICENSE -------------------------------------------------------------------------------- /MQTT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/MQTT.md -------------------------------------------------------------------------------- /PROTOCOL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/PROTOCOL.md -------------------------------------------------------------------------------- /PROTOCOL_NEXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/PROTOCOL_NEXT.md -------------------------------------------------------------------------------- /PROTOCOL_ODYSSEE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/PROTOCOL_ODYSSEE.md -------------------------------------------------------------------------------- /README-PV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/README-PV.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/README.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /WIRING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/WIRING.md -------------------------------------------------------------------------------- /aquamqtt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/aquamqtt.yaml -------------------------------------------------------------------------------- /img/Wärmepumpe_Auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/Wärmepumpe_Auto.png -------------------------------------------------------------------------------- /img/Wärmepumpe_Heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/Wärmepumpe_Heat.png -------------------------------------------------------------------------------- /img/Wärmepumpe_Profille_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/Wärmepumpe_Profille_select.png -------------------------------------------------------------------------------- /img/aquamqtt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/aquamqtt.jpg -------------------------------------------------------------------------------- /img/board_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/board_back.png -------------------------------------------------------------------------------- /img/board_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/board_front.png -------------------------------------------------------------------------------- /img/board_v2_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/board_v2_back.png -------------------------------------------------------------------------------- /img/board_v2_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/board_v2_front.png -------------------------------------------------------------------------------- /img/hmi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/hmi.jpg -------------------------------------------------------------------------------- /img/hmi_controller_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/hmi_controller_back.jpg -------------------------------------------------------------------------------- /img/homeassistant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/homeassistant.png -------------------------------------------------------------------------------- /img/installed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/installed.jpg -------------------------------------------------------------------------------- /img/main_controller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/main_controller.jpg -------------------------------------------------------------------------------- /img/nohmi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/nohmi1.png -------------------------------------------------------------------------------- /img/nohmi2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/nohmi2.png -------------------------------------------------------------------------------- /img/sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/sequence.png -------------------------------------------------------------------------------- /img/wired_up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/wired_up.jpg -------------------------------------------------------------------------------- /img/wired_up_rev2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/img/wired_up_rev2.jpg -------------------------------------------------------------------------------- /pcb/.gitignore: -------------------------------------------------------------------------------- 1 | fp-info-cache 2 | AquaMQTT-backups/* -------------------------------------------------------------------------------- /pcb/AquaMQTT.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/pcb/AquaMQTT.kicad_pcb -------------------------------------------------------------------------------- /pcb/AquaMQTT.kicad_prl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/pcb/AquaMQTT.kicad_prl -------------------------------------------------------------------------------- /pcb/AquaMQTT.kicad_pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/pcb/AquaMQTT.kicad_pro -------------------------------------------------------------------------------- /pcb/AquaMQTT.kicad_sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/pcb/AquaMQTT.kicad_sch -------------------------------------------------------------------------------- /pcb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/pcb/README.md -------------------------------------------------------------------------------- /pcb/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/pcb/fp-lib-table -------------------------------------------------------------------------------- /pcb/rast.kicad_sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/pcb/rast.kicad_sym -------------------------------------------------------------------------------- /pcb/rast.pretty/RAST_3517-06_(2.5MM)_2 COPY.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/pcb/rast.pretty/RAST_3517-06_(2.5MM)_2 COPY.kicad_mod -------------------------------------------------------------------------------- /pcb/sym-lib-table: -------------------------------------------------------------------------------- 1 | (sym_lib_table 2 | (version 7) 3 | ) 4 | -------------------------------------------------------------------------------- /pcb/v1.0/AquaMQTT_Board_Revision_v1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/pcb/v1.0/AquaMQTT_Board_Revision_v1.zip -------------------------------------------------------------------------------- /pcb/v2.0/AquaMQTT_Board_Revision_v2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/pcb/v2.0/AquaMQTT_Board_Revision_v2.zip -------------------------------------------------------------------------------- /pcb/v2.0/AquaMQTT_Board_Revision_v2_BOM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/pcb/v2.0/AquaMQTT_Board_Revision_v2_BOM.csv -------------------------------------------------------------------------------- /pcb/v2.0/AquaMQTT_Board_Revision_v2_CPL.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/pcb/v2.0/AquaMQTT_Board_Revision_v2_CPL.csv -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/.clang-format -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | CMakeListsPrivate.txt 3 | cmake-build-*/ 4 | -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/.idea/.gitignore -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/.idea/.name: -------------------------------------------------------------------------------- 1 | untitled1 -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/.idea/misc.xml -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/.idea/vcs.xml -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/README.md -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/include/ESPLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/include/ESPLink.h -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/include/FrameBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/include/FrameBuffer.h -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/include/FrameHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/include/FrameHandler.h -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/include/HMIState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/include/HMIState.h -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/include/MQTTDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/include/MQTTDefinitions.h -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/include/README -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/lib/README -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/platformio.ini -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/src/ESPLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/src/ESPLink.cpp -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/src/FrameBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/src/FrameBuffer.cpp -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/src/FrameHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/src/FrameHandler.cpp -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/src/HMIState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/src/HMIState.cpp -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/src/main.cpp -------------------------------------------------------------------------------- /prototypes/AquaMqttLogger/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaMqttLogger/test/README -------------------------------------------------------------------------------- /prototypes/AquaSimuUno/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | CMakeListsPrivate.txt 3 | cmake-build-*/ 4 | -------------------------------------------------------------------------------- /prototypes/AquaSimuUno/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaSimuUno/.idea/.gitignore -------------------------------------------------------------------------------- /prototypes/AquaSimuUno/.idea/.name: -------------------------------------------------------------------------------- 1 | AquaMainBoardSimu -------------------------------------------------------------------------------- /prototypes/AquaSimuUno/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaSimuUno/.idea/misc.xml -------------------------------------------------------------------------------- /prototypes/AquaSimuUno/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaSimuUno/.idea/vcs.xml -------------------------------------------------------------------------------- /prototypes/AquaSimuUno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaSimuUno/README.md -------------------------------------------------------------------------------- /prototypes/AquaSimuUno/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaSimuUno/include/README -------------------------------------------------------------------------------- /prototypes/AquaSimuUno/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaSimuUno/lib/README -------------------------------------------------------------------------------- /prototypes/AquaSimuUno/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaSimuUno/platformio.ini -------------------------------------------------------------------------------- /prototypes/AquaSimuUno/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaSimuUno/src/main.cpp -------------------------------------------------------------------------------- /prototypes/AquaSimuUno/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/AquaSimuUno/test/README -------------------------------------------------------------------------------- /prototypes/NextSimulator/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | CMakeListsPrivate.txt 3 | cmake-build-*/ 4 | -------------------------------------------------------------------------------- /prototypes/NextSimulator/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/NextSimulator/.idea/.gitignore -------------------------------------------------------------------------------- /prototypes/NextSimulator/.idea/.name: -------------------------------------------------------------------------------- 1 | AquaMainBoardSimu -------------------------------------------------------------------------------- /prototypes/NextSimulator/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/NextSimulator/.idea/misc.xml -------------------------------------------------------------------------------- /prototypes/NextSimulator/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/NextSimulator/.idea/vcs.xml -------------------------------------------------------------------------------- /prototypes/NextSimulator/README.md: -------------------------------------------------------------------------------- 1 | # NextSimulator 2 | 3 | *Prototype* -------------------------------------------------------------------------------- /prototypes/NextSimulator/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/NextSimulator/include/README -------------------------------------------------------------------------------- /prototypes/NextSimulator/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/NextSimulator/lib/README -------------------------------------------------------------------------------- /prototypes/NextSimulator/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/NextSimulator/platformio.ini -------------------------------------------------------------------------------- /prototypes/NextSimulator/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/NextSimulator/src/main.cpp -------------------------------------------------------------------------------- /prototypes/NextSimulator/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/prototypes/NextSimulator/test/README -------------------------------------------------------------------------------- /tools/AquaDebug/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/.clang-format -------------------------------------------------------------------------------- /tools/AquaDebug/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/.gitignore -------------------------------------------------------------------------------- /tools/AquaDebug/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/.idea/.gitignore -------------------------------------------------------------------------------- /tools/AquaDebug/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /tools/AquaDebug/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /tools/AquaDebug/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/.idea/misc.xml -------------------------------------------------------------------------------- /tools/AquaDebug/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/.idea/vcs.xml -------------------------------------------------------------------------------- /tools/AquaDebug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/README.md -------------------------------------------------------------------------------- /tools/AquaDebug/collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/collect.py -------------------------------------------------------------------------------- /tools/AquaDebug/include/config/Configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/include/config/Configuration.h -------------------------------------------------------------------------------- /tools/AquaDebug/include/config/ExampleConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/include/config/ExampleConfiguration.h -------------------------------------------------------------------------------- /tools/AquaDebug/include/handler/OTA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/include/handler/OTA.h -------------------------------------------------------------------------------- /tools/AquaDebug/include/handler/Wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/include/handler/Wifi.h -------------------------------------------------------------------------------- /tools/AquaDebug/include/mqtt/MQTTDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/include/mqtt/MQTTDefinitions.h -------------------------------------------------------------------------------- /tools/AquaDebug/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/platformio.ini -------------------------------------------------------------------------------- /tools/AquaDebug/src/handler/OTA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/src/handler/OTA.cpp -------------------------------------------------------------------------------- /tools/AquaDebug/src/handler/Wifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/src/handler/Wifi.cpp -------------------------------------------------------------------------------- /tools/AquaDebug/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/src/main.cpp -------------------------------------------------------------------------------- /tools/AquaDebug/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/test/README -------------------------------------------------------------------------------- /tools/AquaDebug/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/AquaDebug/test/main.cpp -------------------------------------------------------------------------------- /tools/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tspopp/AquaMQTT/HEAD/tools/debug.py --------------------------------------------------------------------------------