Franck Nijhof c464056402
Making our website faster, cleaner and prettier (#9853)
* 🔥 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
2019-07-15 22:17:54 +02:00

2.1 KiB

title, description, logo, ha_category, ha_release, ha_iot_class, redirect_from
title description logo ha_category ha_release ha_iot_class redirect_from
EcoNet water heater Instructions on how to integrate Rheem EcoNet water heaters into Home Assistant. econet.png
Water heater
0.61 Cloud Polling
/components/water_heater.econet/
/components/climate.econet/

The econet water heater platform is consuming the information provided by a EcoNet enabled Rheem water heater. This platform allows you to set the temperature, the operation mode, and enable vacation mode.

Configuration

To enable the econet water heater platform, add the following information to your configuration.yaml file:

# Example configuration.yaml entry
water_heater:
  - platform: econet
    username: YOUR_ECONET_EMAIL
    password: YOUR_ECONET_PASSWORD

{% configuration %} username: description: The username used to connect to your EcoNet account. required: true type: string password: description: The password used to connect to your EcoNet account. required: true type: string {% endconfiguration %}

Service econet.add_vacation

You can use the service econet.add_vacation to create a new vacation for your EcoNet water heaters.

Service data attribute Optional Description
entity_id yes The entity id of the water heater to add the vacation to.
start_date yes This is a Unix timestamp for when the vacation should start.
end_date yes this is a Unix timestamp for when the vacation should end.

The Unix timestamps can be obtained from the input_datetime component. This will allow you to graphically set the start and end date.

Service econet.delete_vacation

You can use the service econet.delete_vacation to remove all vacations from an EcoNet water heater.

Service data attribute Optional Description
entity_id yes The entity id of the water heater to remove the vacation from.

Econet water heaters use to live under the climate platform prior to release 0.81.