mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
Add Hive boost off (#17293)
This commit is contained in:
parent
4539def539
commit
af30027ad8
@ -40,9 +40,9 @@ Menu: *Configuration* > *Integrations* > *Select your new integration* > *Press
|
|||||||
|
|
||||||
## Services
|
## Services
|
||||||
|
|
||||||
### Service `hive.boost_heating`
|
### Service `hive.boost_heating_on`
|
||||||
|
|
||||||
You can use the service `hive.boost_heating` to set your heating to boost for a period of time at a certain target temperature". Individual TRVs can also be boosted in the same way, using this service.
|
You can use the service `hive.boost_heating_on` to set your heating to boost for a period of time at a certain target temperature". Individual TRVs can also be boosted in the same way, using this service.
|
||||||
|
|
||||||
| Service data attribute | Optional | Description |
|
| Service data attribute | Optional | Description |
|
||||||
| ---------------------- | -------- | ---------------------------------------------------------------------- |
|
| ---------------------- | -------- | ---------------------------------------------------------------------- |
|
||||||
@ -57,7 +57,7 @@ Examples:
|
|||||||
script:
|
script:
|
||||||
boost_heating:
|
boost_heating:
|
||||||
sequence:
|
sequence:
|
||||||
- service: hive.boost_heating
|
- service: hive.boost_heating_on
|
||||||
target:
|
target:
|
||||||
entity_id: "climate.heating"
|
entity_id: "climate.heating"
|
||||||
data:
|
data:
|
||||||
@ -65,6 +65,26 @@ script:
|
|||||||
temperature: "20.5"
|
temperature: "20.5"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Service `hive.boost_heating_off`
|
||||||
|
|
||||||
|
You can use the service `hive.boost_heating_off` to set your heating to boost for a period of time at a certain target temperature". Individual TRVs can also be boosted in the same way, using this service.
|
||||||
|
|
||||||
|
| Service data attribute | Optional | Description |
|
||||||
|
| ---------------------- | -------- | ---------------------------------------------- |
|
||||||
|
| `entity_id` | no | String, Name of entity e.g., `climate.heating` |
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example script to boost heating, boost period and target temperature specified.
|
||||||
|
script:
|
||||||
|
boost_heating:
|
||||||
|
sequence:
|
||||||
|
- service: hive.boost_heating_off
|
||||||
|
target:
|
||||||
|
entity_id: "climate.heating"
|
||||||
|
```
|
||||||
|
|
||||||
### Service `hive.boost_hot_water`
|
### Service `hive.boost_hot_water`
|
||||||
|
|
||||||
You can use the service `hive.boost_hot_water` to set your hot water to boost for a period of time.
|
You can use the service `hive.boost_hot_water` to set your hot water to boost for a period of time.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user