* Sets front matter defaults * Removes default front matter from section templates/pages * Removes default front matter from addon pages * Removes default front matter from integration pages * Removes default front matter from posts * Removes default front matter from docs pages * Removes default front matter from other pages * Fixes blog category pages
1.8 KiB
title, description, logo, ha_category, ha_release, ha_iot_class, redirect_from
| title | description | logo | ha_category | ha_release | ha_iot_class | redirect_from | ||
|---|---|---|---|---|---|---|---|---|
| Sensibo A/C controller | Instructions on how to integrate Sensibo A/C controller into Home Assistant. | sensibo.png |
|
0.44 | Cloud Polling |
|
Integrates Sensibo Air Conditioning controller into Home Assistant.
To enable this platform, add the following lines to your configuration.yaml file:
# Example configuration.yaml entry
climate:
- platform: sensibo
api_key: YOUR_API_KEY
{% configuration %}
api_key:
description: Your Sensibo API key (To get your API key visit https://home.sensibo.com/me/api).
required: true
type: string
id:
description: A unit ID or a list of IDs. If none specified then all units accessible by the api_key will be used.
required: false
type: string
{% endconfiguration %}
If you create the API key using a dedicated user (and not your main user), then in the Sensibo app log you will be able to distinguish between actions done in the app and actions done by Home Assistant.
Full config example
climate:
- platform: sensibo
api_key: YOUR_API_KEY
id:
- id1
- id2
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:
{% raw %}
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', 'heat')}}"
turn_on:
service: climate.turn_on
data:
entity_id: climate.ac
turn_off:
service: climate.turn_off
data:
entity_id: climate.ac
{% endraw %}