Sensibo
Integrates Sensibo Air Conditioning controller into Home Assistant.
Prerequisites
Please click here and register to obtain the API key.
Configuration
Adding Sensibo to your Home Assistant instance can be done via the user interface, by using this My button:
Sensibo can be auto-discovered by Home Assistant. If an instance was found, it will be shown as “Discovered”, which you can select to set it up right away.
If there wasn’t any discovered automatically, don’t worry! You can set up a manual integration entry:
-
Browse to your Home Assistant instance.
-
In the sidebar click on Settings.
-
From the configuration menu select: Devices & Services.
-
In the bottom right, click on the Add Integration button.
-
From the list, search and select “Sensibo”.
-
Follow the instruction on screen to complete the set up.
Binary sensors
For motion sensors (supported by Sensibo Air devices), this integration provides the following sensors:
- Motion
- Alive
- Main sensor
For climate devices, these sensors are available:
- Room presence
- Update available
Select Entities
For supported devices, this integration provides support to set the following modes by the select entity:
- Horizontal swing
- Light
Sensor Entities
For motion sensors (supported by Sensibo Air devices), this integration provides the following sensors:
- Temperature
- Humidity
For diagnostics, not automatically displayed on dashboards, these sensors are available:
- Voltage
- Rssi
Adding a quick switch example
If you want a “Quick Switch” to turn your AC On / Off, you can do that using the following Switch Template
:
switch:
- platform: template
switches:
ac:
friendly_name: "AC"
value_template: "{{ is_state('climate.ac', 'cool') or is_state('climate.ac', 'heat') or is_state('climate.ac', 'dry') or is_state('climate.ac', 'fan_only') }}"
turn_on:
service: climate.set_hvac_mode
target:
entity_id: climate.ac
data:
hvac_mode: "cool"
turn_off:
service: climate.set_hvac_mode
target:
entity_id: climate.ac
data:
hvac_mode: "off"