Mapping OTthing sensors for SAT #134
Replies: 1 comment
-
|
OTthing submits all readable status information in a single MQTT topic: /state
Example for the JSON payload sent in this topic: Topics for setting values: |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Part I ( Mapping EMS/ESP32 sensors for SAT )
Part II ( Boiler control )
await self._send_command(f"CH={1 if state == DeviceState.ON else 0}")await self._send_command(f"CS={value}")await self._send_command(f"MM={value}")await self._send_command(f"SW={value}")await self._send_command(f"SH={value}")Part III ( Command Topic )
await mqtt.async_publish(self.hass, f"{self._topic}/set/{self._node_id}/command", payload)Part IV ( Publish Topic )
OTGW/value/{self._node_id}Beta Was this translation helpful? Give feedback.
All reactions