Advertisement
Guest User

Untitled

a guest
Jan 31st, 2017
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. homeassistant:
  2. # Name of the location where Home Assistant is running
  3. name: Home
  4. # Location required to calculate the time the sun rises and sets
  5. latitude: 43.049721
  6. longitude: -88.037208
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: 199
  9. # metric for Metric, imperial for Imperial
  10. unit_system: imperial
  11. # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  12. time_zone: America/Chicago
  13. customize:
  14. - entity_id: sensor.pws_temp_f
  15. friendly_name: Temp
  16. - entity_id: sensor.pws_wind_mph
  17. friendly_name: Wind Speed
  18. icon: mdi:weather-windy
  19. - entity_id: media_player.roku_5s56an445282
  20. friendly_name: Roku
  21.  
  22. # Show links to resources in log and frontend
  23. # introduction:
  24.  
  25. # Enables the frontend
  26. frontend:
  27.  
  28. http:
  29. # Uncomment this to add a password (recommended!)
  30. # api_password: PASSWORD
  31. # Uncomment this if you are using SSL or running in Docker etc
  32. # base_url: example.duckdns.org:8123
  33.  
  34. # Checks for available updates
  35. updater:
  36.  
  37. # Discover some devices automatically
  38. discovery:
  39.  
  40. # Allows you to issue voice commands from the frontend in enabled browsers
  41. conversation:
  42.  
  43. # Enables support for tracking state changes over time.
  44. history:
  45.  
  46. # View all events in a logbook
  47. logbook:
  48.  
  49. # Track the sun
  50. sun:
  51.  
  52. # Text to speech
  53. tts:
  54. platform: google
  55.  
  56. device_tracker:
  57. - platform: tomato
  58. host: 192.168.1.1
  59. username: root
  60. password: admin
  61. http_id: TID64f2b811ada97bf2
  62.  
  63. sensor:
  64. - platform: wunderground
  65. api_key: 8ecac4e02b9a39cc
  66. monitored_conditions:
  67. - feelslike_f
  68. - temp_f
  69. - wind_gust_mph
  70. - wind_mph
  71.  
  72. group:
  73. default_view:
  74. view: yes
  75. entities:
  76. - media_player.roku_5s56an445282
  77. - group.people
  78. - group.weather
  79. - group.lights
  80. people:
  81. entities:
  82. - device_tracker.daniellesipad
  83. - device_tracker.iphone
  84. - device_tracker.ericginssiphone
  85. weather:
  86. entities:
  87. - sensor.pws_temp_f
  88. - sensor.pws_wind_mph
  89. - sun.sun
  90. lights:
  91. entities:
  92. - light.bedside
  93. - light.kitchen_lightstrip
  94. - light.hue_ambiance_1
  95. - light.hue_ambiance_2
  96. - light.hue_ambiance_3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement