Guest User

Untitled

a guest
Sep 3rd, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. homeassistant:
  2. # Name of the location where Home Assistant is running
  3. name:
  4. # Location required to calculate the time the sun rises and sets
  5. latitude:
  6. longitude:
  7. # Impacts weather/sunrise data
  8. elevation: -2
  9. # metric for Metric, imperial for Imperial
  10. unit_system: metric
  11. # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  12. time_zone: Europe/Amsterdam
  13.  
  14. customize:
  15. sensor.pws_relative_humidity:
  16. friendly_name: Relative Humidity
  17. icon: mdi:water-percent
  18. sensor.pws_wind_dir:
  19. friendly_name: Wind Direction
  20. icon: mdi:compass
  21. sensor.pws_temp_c:
  22. friendly_name: Temperature C
  23. icon: mdi:thermometer
  24. sensor.pws_feelslike_c:
  25. friendly_name: Feels Like C
  26. icon: mdi:account-alert
  27. sensor.pws_precip_today_metric:
  28. friendly_name: Precip Today mm
  29. icon: mdi:water
  30. sensor.pws_pressure_mb:
  31. friendly_name: Barometric Pressure mb
  32. icon: mdi:nature
  33. sensor.pws_visibility_km:
  34. friendly_name: Visibility km
  35. icon: mdi:weather-fog
  36. sensor.pws_wind_kph:
  37. friendly_name: Sustained Wind Speed kph
  38. icon: mdi:weather-windy
  39.  
  40. # Enables the frontend
  41. frontend:
  42.  
  43. http:
  44. # Uncomment this to add a password (recommended!)
  45. # api_password: PASSWORD
  46.  
  47. # Checks for available updates
  48. updater:
  49.  
  50. # Discover some devices automatically
  51. discovery:
  52.  
  53. # Allows you to issue voice commands from the frontend in enabled browsers
  54. conversation:
  55.  
  56. # Enables support for tracking state changes over time.
  57. history:
  58.  
  59. # View all events in a logbook
  60. logbook:
  61.  
  62. # Track the sun
  63. sun:
  64.  
  65. ##includes
  66. customize: !include customize.yaml
  67. group: !include group.yaml
  68.  
  69. # Weather Prediction
  70. sensor 1:
  71. platform: wunderground
  72. api_key:
  73. pws_id:
  74. monitored_conditions:
  75. - weather
  76. - temp_c
  77. - feelslike_c
  78. - wind_kph
  79. - pressure_mb
  80. - wind_dir
  81. - relative_humidity
  82. - visibility_km
  83. - precip_today_metric
  84.  
  85. # Nest
  86. nest:
  87. username:
  88. password:
  89.  
  90. thermostat:
  91. platform: nest
  92.  
  93. media_player 1:
  94. platform:
  95. name: 'Yamaha RX-V675'
  96.  
  97. ifttt:
  98. key: y
  99.  
  100. switch 1:
  101. platform: wake_on_lan
  102. mac_address: ""
  103. name: "WOL - NAS"
  104. host: "192.168.0.106"
  105.  
  106. switch 2:
  107. platform: wake_on_lan
  108. mac_address: ""
  109. name: "WOL - Computerkamer"
  110. host: "192.168.0.107"
Add Comment
Please, Sign In to add comment