Skip to content

Commit ebfc676

Browse files
author
Wolfgang Malgadey
authored
Merge pull request #14 from wmalgadey/feature/hass_migration
Integrated the current hass component development. * Structural changes to the component parts * added support for AIR_CONDITIONING zones
2 parents 08d2644 + b5881a8 commit ebfc676

File tree

5 files changed

+394
-324
lines changed

5 files changed

+394
-324
lines changed

.gitignore

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
1+
# Hide some OS X stuff
2+
.DS_Store
3+
.AppleDouble
4+
.LSOverride
5+
Icon
16

2-
*.pyc
7+
# GITHUB Proposed Python stuff:
8+
*.py[cod]
9+
10+
# Visual Studio Code
11+
.vscode

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ Custom home-assistant component for tado (using my fork of PyTado for a py3 comp
33

44
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)
55

6-
It is called `tado_v1` because it is build upon the unofficial API used by the myTado.com-Webapp.
7-
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.
87

98
# Howto use
109
I created a new custom_component which adds multiple sensors for every zone in myTado.com (not for every device)
@@ -19,8 +18,8 @@ For hass manual installation it is:
1918
## Edit configuration.yaml
2019
```
2120
tado_v1:
22-
mytado_username: <.. your username ..>
23-
mytado_password: <.. your password ..>
21+
username: <.. your username ..>
22+
password: <.. your password ..>
2423
```
2524

2625
## Use the new sensors in home-assistant

0 commit comments

Comments
 (0)