From 93a22fc0bd1c360eb25d6959de834de08a2000d8 Mon Sep 17 00:00:00 2001 From: Emmanuel Levijarvi Date: Sat, 29 Nov 2025 15:12:33 -0800 Subject: [PATCH] docs: add TOU enable/disable command payload formats Add detailed MQTT payload examples for TOU_ENABLE (33554476) and TOU_DISABLE (33554475) commands to the protocol documentation, matching the format used for other control commands. --- docs/protocol/mqtt_protocol.rst | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/docs/protocol/mqtt_protocol.rst b/docs/protocol/mqtt_protocol.rst index 7d35b0b..ec376d6 100644 --- a/docs/protocol/mqtt_protocol.rst +++ b/docs/protocol/mqtt_protocol.rst @@ -273,6 +273,33 @@ Anti-Legionella "paramStr": "" } +TOU Enable/Disable +------------------ + +Enable or disable Time-of-Use optimization without changing the configured schedule. + +**Enable TOU (command 33554476):** + +.. code-block:: json + + { + "command": 33554476, + "mode": "tou-on", + "param": [], + "paramStr": "" + } + +**Disable TOU (command 33554475):** + +.. code-block:: json + + { + "command": 33554475, + "mode": "tou-off", + "param": [], + "paramStr": "" + } + Energy Usage Query ------------------