mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-21 08:16:53 +00:00
Add climate service to Homematic IP Cloud (#10842)
* Add climate service to Homematic IP Cloud ... to select the active profile * fix stale name * Fixed service name
This commit is contained in:
parent
6d4bd26880
commit
718c4a00e3
@ -159,6 +159,7 @@ Within this delay the device registration should be completed in the App, otherw
|
||||
- `homematicip_cloud.activate_vacation`: Activates the vacation mode until the given time.
|
||||
- `homematicip_cloud.deactivate_eco_mode`: Deactivates the eco mode immediately.
|
||||
- `homematicip_cloud.deactivate_vacation`: Deactivates the vacation mode immediately.
|
||||
- `homematicip_cloud.set_active_climate_profile`: Set the active climate profile index.
|
||||
|
||||
### Service Examples
|
||||
|
||||
@ -214,11 +215,26 @@ Deactivates the vacation mode immediately.
|
||||
```yaml
|
||||
...
|
||||
action:
|
||||
service: homematicip_cloud.deactivate_vacation_mode
|
||||
service: homematicip_cloud.deactivate_vacation
|
||||
data:
|
||||
accesspoint_id: 3014xxxxxxxxxxxxxxxxxxxx
|
||||
```
|
||||
|
||||
Set the active climate profile index.
|
||||
|
||||
The index of the climate profile is 1-based.
|
||||
You can get the required index from the native Homematic IP App.
|
||||
|
||||
```yaml
|
||||
...
|
||||
action:
|
||||
service: homematicip_cloud.set_active_climate_profile
|
||||
data:
|
||||
entity_id: climate.livingroom
|
||||
climate_profile_index: 1
|
||||
```
|
||||
|
||||
|
||||
## Additional info
|
||||
|
||||
Push button devices are only available with a battery sensor. This is due to a limitation of the vendor API (eq3).
|
||||
|
Loading…
x
Reference in New Issue
Block a user