From 731b0e68b2e86b4562bcea29b7597d393e4fc1a0 Mon Sep 17 00:00:00 2001 From: jfearon <1884400+jfearon@users.noreply.github.com> Date: Sun, 5 Jul 2020 13:20:17 +0100 Subject: [PATCH] Add water heater set timer service info (#13689) Co-authored-by: Franck Nijhof --- source/_integrations/tado.markdown | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/source/_integrations/tado.markdown b/source/_integrations/tado.markdown index 0b0a6f38345..8c7ef6b6c41 100644 --- a/source/_integrations/tado.markdown +++ b/source/_integrations/tado.markdown @@ -140,3 +140,28 @@ If the above method returns an unauthorized error. The `home_id` can also be fou The `home_id` appears in the response for users as `"id":12345` In this example `12345` is the `home_id` you'll need to configure. + +## Services + +### Service `tado.set_water_heater_timer` + +You can use the service `tado.set_water_heater_timer` to set your water heater to switch on for a set time period. + +| Service data attribute | Optional | Description | +| ---------------------- | -------- | ---------------------------------------------------------------------- | +| `entity_id` | yes | String, Name of entity e.g., `climate.heating` | +| `time_period` | no | Time Period, Period of time the boost should last for e.g., `01:30:00` | +| `temperature` | yes | String, The required target temperature e.g., `20.5` | + +Examples: + +```yaml +# Example script to set a timer for the water heater with no temperature specified +script: + boost_heating: + sequence: + - service: tado.set_water_heater_timer + data: + entity_id: "water_heater.hot_water" + time_period: "01:30:00" +``` \ No newline at end of file