Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tspopp committed Feb 27, 2024
1 parent 293ad3b commit fbb4c6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions AquaMQTT/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ framework = arduino
test_framework = googletest
build_flags = -std=c++11
# uncomment the below lines to use over the air update
# upload_protocol = espota
# upload_port = 192.168.188.62
#upload_protocol = espota
#upload_port = 192.168.188.62
lib_deps =
locoduino/RingBuffer
FrankBoesing/FastCRC
Expand Down
6 changes: 3 additions & 3 deletions MQTT.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Using the prefix, the `$root` topic is created, which is `$prefix/aquamqtt/` and
|----------------------------------|---------------------------------------|--------|------|--------------------------------------------------|
| Last Will | `$root/stats/lwlState` | Enum | | ONLINE, OFFLINE -- retained|
| OperationMode | `$root/stats/aquamqttMode` | Enum | | LISTENER, MITM |
| Active Overrides | `$root/stats/activeOverrides` | json | | Active Overrides are flagged either with 1 (overriden) or 0 (not overriden) Example Payload: `{ "operationMode": 0, "operationType": 0, "waterTempTarget": 0, "heatingElementEnabled": 0, "emergencyModeEnabled": 0, "time/date": 1 }` |
| Active Overrides | `$root/stats/activeOverrides` | json | | Active Overrides are flagged either with 1 (overriden) or 0 (not overriden) Example Payload: `{ "operationMode": 0, "operationType": 0, "waterTempTarget": 0, "heatingElementEnabled": 0, "emergencyModeEnabled": 0, "configInstallation": 0 , "time/date": 1 }` |
| Override Modes | `$root/stats/overrideMode` | Enum | | `STANDARD`, `PV HP`, `PV HE` or `PV BOOST`. See [README-PV.md](/README-PV.md) for additional information. |
| Flag PV heat pump | `$root/stats/flagPVModeHeatPump` | bool | | Status of the pv heat pump flag. See [README-PV.md](/README-PV.md) for additional information. |
| Flag PV heat element | `$root/stats/flagPVModeHeatElement` | bool | | Status of the pv heat element flag. See [README-PV.md](/README-PV.md) for additional information. |
Expand Down Expand Up @@ -93,8 +93,8 @@ Using this topics you may override the HMI Controller in AquaMQTT OperationMode
| Installation Config | `$root/ctrl/configInstallation` | Enum | | "`HEAT PUMP ONLY`", "`BOILER BACKUP / HEAT PUMP PRIORITY"`", "`...`" | Overrides the installation config |
| Enable or disable heating element | `$root/ctrl/heatingElementEnabled` | bool | | "`1`" | Allow the DHW heat pump to use the heating element if needed. Sanity: It is not possible to disable the heating element in case emergency mode is enabled.|
| Enable or disable emergency mode | `$root/ctrl/emergencyModeEnabled` | bool | | "`0`" | Forces the DHW heat pump to use only the heating element. Sanity: it is not possible to enable emergency mode if heating element has been disabled. |
| Set PV Mode Heat Pump Flag | `$root/ctrl/flagPVModeHeatPump` | bool| | | See [README-PV.md](/README-PV.md) additional information. Note: It is possible to define an additional custom mqtt topic for this attribute within `Configuration.h` |
| Set PV Mode Heat Element Flag | `$root/ctrl/flagPVModeHeatPump` | bool| | | See [README-PV.md](/README-PV.md) for additional information. Note: It is possible to define an additional custom mqtt topic for this attribute within `Configuration.h` |
| Set PV Mode Heat Pump Flag | `$root/ctrl/flagPVModeHeatPump` | bool| | "`1`" | See [README-PV.md](/README-PV.md) additional information. Note: It is possible to define an additional custom mqtt topic for this attribute within `Configuration.h` |
| Set PV Mode Heat Element Flag | `$root/ctrl/flagPVModeHeatPump` | bool| | "`1`" | See [README-PV.md](/README-PV.md) for additional information. Note: It is possible to define an additional custom mqtt topic for this attribute within `Configuration.h` |
| Reset Overrides | `$root/ctrl/reset` | Void | | | Removes all previous set overrides. |

**Note:** Calling a `ctrl` topic with an empty payload `""` will reset individual override.

0 comments on commit fbb4c6b

Please sign in to comment.