mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-13 12:26:50 +00:00
Add scene platform to Qbus integration (#38836)
This commit is contained in:
parent
b6585b6b6b
commit
e61693d929
@ -4,10 +4,12 @@ description: Instructions on how to integrate your Qbus installation with Home A
|
|||||||
ha_category:
|
ha_category:
|
||||||
- Climate
|
- Climate
|
||||||
- Light
|
- Light
|
||||||
|
- Scene
|
||||||
- Switch
|
- Switch
|
||||||
ha_platforms:
|
ha_platforms:
|
||||||
- climate
|
- climate
|
||||||
- light
|
- light
|
||||||
|
- scene
|
||||||
- switch
|
- switch
|
||||||
ha_iot_class: Local Push
|
ha_iot_class: Local Push
|
||||||
ha_codeowners:
|
ha_codeowners:
|
||||||
@ -40,13 +42,12 @@ There is currently support for the following **Qbus** products within Home Assis
|
|||||||
|
|
||||||
- **CTD01E to CTD03E (CTD 3.0)**: main controllers (yellow).
|
- **CTD01E to CTD03E (CTD 3.0)**: main controllers (yellow).
|
||||||
- **CTD10 to CTDMax (CTD 3.5)**: main controllers (black).
|
- **CTD10 to CTDMax (CTD 3.5)**: main controllers (black).
|
||||||
- **Toggle**: toggle outputs on controllers.
|
|
||||||
- **Dimmer**: dimmer outputs on controllers.
|
|
||||||
|
|
||||||
## Available entities
|
## Available entities
|
||||||
|
|
||||||
- **Climate**: manages thermostats by setting temperature and choosing presets.
|
- **Climate**: manages thermostats by setting temperature and choosing presets.
|
||||||
- **Light**: controls dimmer lights, allowing both on/off functionality and brightness adjustment.
|
- **Light**: controls dimmer lights, allowing both on/off functionality and brightness adjustment.
|
||||||
|
- **Scene**: activates predefined scenes.
|
||||||
- **Switch**: toggles on/off outputs.
|
- **Switch**: toggles on/off outputs.
|
||||||
|
|
||||||
## Removing the integration
|
## Removing the integration
|
||||||
@ -59,6 +60,38 @@ This integration follows standard integration removal. No extra steps are requir
|
|||||||
|
|
||||||
All data from **Qbus** entities are pushed to Home Assistant over MQTT.
|
All data from **Qbus** entities are pushed to Home Assistant over MQTT.
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
### Automation to activate Qbus scene
|
||||||
|
|
||||||
|
This automation will activate the **Watching TV** Qbus scene when turning on your TV.
|
||||||
|
|
||||||
|
Replace `media_player.my_tv` with your TV entity and `scene.ctd_000001_watching_tv` with your Qbus scene entity.
|
||||||
|
|
||||||
|
{% raw %}
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
alias: Activate TV scene when turning on TV
|
||||||
|
description: ""
|
||||||
|
mode: single
|
||||||
|
triggers:
|
||||||
|
- entity_id:
|
||||||
|
- media_player.my_tv
|
||||||
|
from: "off"
|
||||||
|
to: "on"
|
||||||
|
trigger: state
|
||||||
|
conditions: []
|
||||||
|
actions:
|
||||||
|
- target:
|
||||||
|
entity_id: scene.ctd_000001_watching_tv
|
||||||
|
metadata: {}
|
||||||
|
alias: Activate TV scene
|
||||||
|
action: scene.turn_on
|
||||||
|
data: {}
|
||||||
|
```
|
||||||
|
|
||||||
|
{% endraw %}
|
||||||
|
|
||||||
## Known limitations
|
## Known limitations
|
||||||
|
|
||||||
The integration does not provide a way to update the firmware on the devices. This can only be done with the configuration software System Manager.
|
The integration does not provide a way to update the firmware on the devices. This can only be done with the configuration software System Manager.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user