sensibo-mqtt

Publish status/state of Sensibo devices, and allow setting state over MQTT

Usage no npm install needed!

<script type="module">
  import sensiboMqtt from 'https://cdn.skypack.dev/sensibo-mqtt';
</script>

README

sesnsibo-mqtt

Publish status/state of Sensibo devices, and allow setting state over MQTT

Copy config.example.yml to config.yml, edit the fields, start using CONFIG_PATH=./config.yml node main

Once started you will receive status updates on sensibo/status/{device_id}

You can change AC state sending to sensibo/set/{device_id}/acState see post details, or just single properties using sensibo/set/{device_id}/acState/{property} see patch details or enable climate react using sensibo/set/{device_id}/smartmode see put details NOTE: seems this endpoint doesn't work on the Sensibo API.

Eg, send to:

  • topic = sensibo/set/Abcd123/acState/on
  • value = true

or

  • topic = sensibo/set/Abcd123/smartmode
  • value = true

or

  • topic = sensibo/set/Abcd123/acState
  • value = {"on"true,"mode":"cool","fanLevel":"auto","targetTemperature":22}

HTTP Status

To enable set a http port in the config (see example), then poll /status on that port.