Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 23 additions & 3 deletions source/_integrations/hive.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ Menu: *Configuration* > *Integrations* > *Select your new integration* > *Press

## 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 |
| ---------------------- | -------- | ---------------------------------------------------------------------- |
Expand All @@ -57,14 +57,34 @@ Examples:
script:
boost_heating:
sequence:
- service: hive.boost_heating
- service: hive.boost_heating_on
target:
entity_id: "climate.heating"
data:
time_period: "01:30:00"
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`

You can use the service `hive.boost_hot_water` to set your hot water to boost for a period of time.
Expand Down