Skip to content

Commit 59beeef

Browse files
William ScanlonMartinHjelmare
William Scanlon
authored andcommitted
Doc for EcoNet water heaters (home-assistant#4299)
1 parent 309b287 commit 59beeef

File tree

2 files changed

+64
-0
lines changed

2 files changed

+64
-0
lines changed
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
---
2+
layout: page
3+
title: "EcoNet water heater"
4+
description: "Instructions how to integrate Rheem EcoNet water heaters into Home Assistant."
5+
date: 2017-12-28 14:51
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: econet.png
11+
ha_category: Climate
12+
ha_release: 0.61.0
13+
ha_iot_class: "Cloud Polling"
14+
---
15+
16+
17+
The `econet` water heater platform is consuming the information provided by a [EcoNet enabled Rheem water heater](http://www.rheem.com/EcoNet/Home). This component allows you to set the temperature, the operation mode, and enable vaction mode.
18+
19+
To enable the `econet` water heater platform add the following to your config.
20+
21+
22+
```yaml
23+
# Example configuration.yaml entry
24+
climate:
25+
- platform: econet
26+
username: YOUR_ECONET_EMAIL
27+
password: YOUR_ECONET_PASSWORD
28+
```
29+
30+
{% configuration %}
31+
username:
32+
description: The username used to connect to your EcoNet account.
33+
required: true
34+
type: string
35+
password:
36+
description: The password used to connect to your EcoNet account.
37+
required: true
38+
type: string
39+
{% endconfiguration %}
40+
41+
42+
### {% linkable_title Service `econet_add_vacation` %}
43+
44+
You can use the service econet/add_vacation to create a new vacation for your EcoNet water heaters.
45+
46+
| Service data attribute | Optional | Description |
47+
| ---------------------- | -------- | ----------- |
48+
| `entity_id` | yes | The entity id of the water heater to add the vaction to.
49+
| `start_date` | yes | This is a Unix timestamp for when the vaction should start.
50+
| `end_date` | yes | this is a Unix timestamp for when the vaction should end.
51+
52+
<p class='note'>
53+
The Unix timestamps can be obtained from the input_datetime component. This will allow you to graphically set the start and end date.
54+
</p>
55+
56+
### {% linkable_title Service `econet_delete_vacation` %}
57+
58+
You can use the service econet/delete_vacation to remove all vactions from an EcoNet water heater.
59+
60+
| Service data attribute | Optional | Description |
61+
| ---------------------- | -------- | ----------- |
62+
| `entity_id` | yes | The entity id of the water heater to remove the vaction from.
63+
64+
279 KB
Loading

0 commit comments

Comments
 (0)