mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-16 05:46:52 +00:00

* 🔥 Removes octopress.js * 🔥 Removes use of root_url var * 🔥 Removes Octopress generator reference from feed * 🔥 Removes delicious support * 🔥 Removes support for Pinboard * 🔥 Removes support for Disqus * 🔥 Removes support for Google Plus * ↩️ Migrate custom after_footer to default template * ↩️ Migrate custom footer to default template * ↩️ Migrate custom header to default template * 🔥 Removes unused template files * 🚀 Places time to read directly in post template * 🚀 Removes unneeded capture from archive_post.html template * 🔥 🚀 Removes unused, but heaving sorting call in component page * 🚀 Merged javascripts into a single file * 🔥 Removes more uses of root_url * 🚀 Removal of unneeded captures from head * 🔥 🚀 Removal of expensive liquid HTML compressor * 🔥 Removes unneeded templates * 🚀 Replaces kramdown with GitHub's CommonMark 🚀 * 💄 Adds Prism code syntax highlighting * ✨ Adds support for redirect in Netlify * ↩️ 🔥 Let Netlify handle all developer doc redirects * ✏️ Fixes typo in redirects file: Netify -> Netlify * 🔥 Removes unused .themes folder * 🔥 Removes unused aside.html template * 🔥 Removes Disqus config leftover * 🔥 Removes rouge highlighter config * 🔥 Removes Octopress 🎉 * 💄 Adjust code block font size and adds soft wraps * 💄 Adds styling for inline code blocks * 💄 Improve styling of note/warning/info boxes + div support * 🔨 Rewrites all note/warning/info boxes
2.9 KiB
2.9 KiB
title, description, ha_release
title | description | ha_release |
---|---|---|
Water Heater | Instructions on how to setup water heater devices within Home Assistant. | 0.81 |
The water_heater
integration is built for the controlling and monitoring of hot water heaters.
To enable this component, pick one of the platforms, and add it to your configuration.yaml
:
# Example configuration.yaml entry
water_heater:
platform: demo
Services
Water heater control services
Available services: water_heater.set_temperature
, water_heater.turn_away_mode_on
, water_heater.turn_away_mode_off
, water_heater.set_operation_mode
Not all water heater services may be available for your platform. Be sure to check the available services Home Assistant has enabled by checking Services.
Service water_heater.set_temperature
Sets target temperature of water heater device.
Service data attribute | Optional | Description |
---|---|---|
entity_id |
yes | String or list of strings that point at entity_id 's of water heater devices to control. Else targets all. |
temperature |
no | New target temperature for water heater |
operation_mode |
yes | Operation mode to set the temperature to. This defaults to current_operation mode if not set, or set incorrectly. |
Automation example
automation:
trigger:
platform: time
at: "07:15:00"
action:
- service: water_heater.set_temperature
data:
entity_id: water_heater.demo
temperature: 24
operation_mode: eco
Service water_heater.set_operation_mode
Set operation mode for water heater device
Service data attribute | Optional | Description |
---|---|---|
entity_id |
yes | String or list of strings that point at entity_id 's of water heater devices to control. Else targets all. |
operation_mode |
no | New value of operation mode |
Automation example
automation:
trigger:
platform: time
at: "07:15:00"
action:
- service: water_heater.set_operation_mode
data:
entity_id: water_heater.demo
operation_mode: eco
Service water_heater.set_away_mode
Turn away mode on or off for water heater device
Service data attribute | Optional | Description |
---|---|---|
entity_id |
yes | String or list of strings that point at entity_id 's of water heater devices to control. Else targets all. |
away_mode |
no | New value of away mode. 'on'/'off' or True/False |
Automation example
automation:
trigger:
platform: time
at: "07:15:00"
action:
- service: water_heater.set_away_mode
data:
entity_id: water_heater.demo
away_mode: true