Created
February 13, 2017 13:00
-
-
Save markduwe/321d8f88ae74c5a6da694bceecf7ec43 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
homeassistant: | |
name: Home | |
latitude: *YOURLAT* | |
longitude: *YOURLNG* | |
elevation: 55 | |
unit_system: metric | |
time_zone: Europe/London | |
http: | |
api_password: *YOURPASSWORD* | |
base_url: *YOURDUCKDNS* | |
zone: | |
name: Home | |
latitude: *YOURLAT* | |
longitude: *YOURLNG* | |
radius: 100 | |
icon: 'mdi:home' | |
frontend: | |
updater: | |
discovery: | |
history: | |
logbook: | |
sun: | |
group: !include groups.yaml | |
media_player: !include media_players.yaml | |
sensor: !include sensors.yaml | |
light: !include lights.yaml | |
switch: !include switch.yaml | |
notify: !include notify.yaml | |
device_tracker: !include device_trackers.yaml | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
default_view: | |
view: yes | |
entities: | |
- group.tado | |
tado: | |
name: 'Tadoº' | |
entities: | |
- sensor.humidity | |
- sensor.current_temperature | |
- sensor.set_temperature | |
- sensor.heating_power | |
- sensor.power |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- platform: rest | |
resource: https://my.tado.com/api/v2/homes/*YOURID*/zones/1/state?username=*YOURUSERNAME*&password=*YOURPASSWORD* | |
value_template: '{{ value_json.sensorDataPoints.humidity.percentage }}' | |
unit_of_measurement: '%' | |
name: 'Humidity' | |
- platform: rest | |
resource: https://my.tado.com/api/v2/homes/*YOURID*/zones/1/state?username=*YOURUSERNAME*&password=*YOURPASSWORD* | |
value_template: '{{ value_json.sensorDataPoints.insideTemperature.celsius }}' | |
unit_of_measurement: °C | |
name: 'Current Temperature' | |
- platform: rest | |
resource: https://my.tado.com/api/v2/homes/*YOURID*/zones/1/state?username=*YOURUSERNAME*&password=*YOURPASSWORD* | |
value_template: '{{ value_json.setting.temperature.celsius }}' | |
unit_of_measurement: °C | |
name: 'Set Temperature' | |
- platform: rest | |
resource: https://my.tado.com/api/v2/homes/*YOURID*/zones/1/state?username=*YOURUSERNAME*&password=*YOURPASSWORD* | |
value_template: '{{ value_json.setting.power }}' | |
name: 'Power' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment