You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-18Lines changed: 20 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,10 @@ Custom home-assistant component for tado (using my fork of PyTado for a py3 comp
3
3
4
4
It is highly inspired by https://community.home-assistant.io/t/tado-api-json/272/5 and the comments by diplix (https://community.home-assistant.io/users/diplix)
5
5
6
-
It is called `tado_v1` because it is build upon the unofficial API used by the myTado.com-Webapp. It will be merged as `tado` component in hass main repository, but I will leave this here for those willing to use a custom component.
6
+
It is called `tado_v1` because it is build upon the unofficial API used by the myTado.com-Webapp. It has been merged as `tado` component in hass main repository, but I will leave this here for those willing to use a custom component and to do some testing on new features or bug-fixes.
7
7
8
8
# Howto use
9
-
I created a new custom_component which adds multiple sensors for every zone in myTado.com (not for every device)
9
+
I created a new custom_component which adds multiple sensors for every zone in myTado.com (not for every device, tado is build around zones!)
10
10
11
11
## Copy files to local config directory
12
12
you have to copy all files included in `custom_components` to your home-assistant config directory.
@@ -23,30 +23,32 @@ tado_v1:
23
23
```
24
24
25
25
## Use the new sensors in home-assistant
26
-
For every zone in your tado setup we will create a sensor with a specific unit
27
-
```
28
-
sensor.<name of tado zone>_temperature (°C) Attributes: { "setting" : °C, "time" : string }
sensor.<name of tado home>_tado_bridge_status (boolean)
39
29
```
40
30
41
-
lastly I added a climate device for every zone
31
+
and one climate device for every zone
42
32
```
43
33
climate.<name of tado zone>
44
34
```
45
-
with the capabilities of changeing the temperature settings and the tado mode for manual changes. Away mode is not supported.
35
+
with the capabilities of changeing the temperature setting and the tado mode for manual changes. Manually setting the away mode is not supported, because you cannot set the away mode in mytado.com.
36
+
37
+
The following operation modes are supported
38
+
```
39
+
CONST_OVERLAY_MANUAL: 'Manual',
40
+
CONST_OVERLAY_TIMER: 'Timer',
41
+
CONST_OVERLAY_TADO_MODE: 'Tado mode',
42
+
CONST_MODE_SMART_SCHEDULE: 'Smart schedule',
43
+
CONST_MODE_OFF: 'Off',
44
+
```
45
+
46
+
For devices supporting `FAN_MODES` (like ac devices), you can set the following fan modes:
46
47
```
47
-
CONST_OVERLAY_TADO_MODE = "TADO_MODE" # wait until tado changes the mode automatic
48
-
CONST_OVERLAY_MANUAL = "MANUAL" # the user has change the temperature or mode manually
49
-
CONST_OVERLAY_TIMER = "TIMER" # the temperature will be reset after a timespan
0 commit comments