Advertisement
Guest User

Untitled

a guest
Dec 27th, 2017
589
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.97 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: 59.5
  6. longitude: 18.05
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: 0
  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/Stockholm
  13. # Customization file
  14. customize: !include customize.yaml
  15.  
  16. zone:
  17. name: Work
  18. latitude: 59.408205
  19. longitude: 17.951607
  20. radius: 100
  21.  
  22.  
  23. # Show links to resources in log and frontend
  24. #introduction:
  25.  
  26. # Enables the frontend
  27. frontend:
  28.  
  29. # Enables configuration UI
  30. config:
  31.  
  32. http:
  33. # Secrets are defined in the file secrets.yaml
  34. # api_password: !secret http_password
  35. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  36. # base_url: example.duckdns.org:8123
  37.  
  38. # Checks for available updates
  39. # Note: This component will send some information about your system to
  40. # the developers to assist with development of Home Assistant.
  41. # For more information, please see:
  42. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  43. updater:
  44. # Optional, allows Home Assistant developers to focus on popular components.
  45. # include_used_components: true
  46.  
  47. # Discover some devices automatically
  48. discovery:
  49.  
  50. # Allows you to issue voice commands from the frontend in enabled browsers
  51. conversation:
  52.  
  53. # Enables support for tracking state changes over time
  54. history:
  55.  
  56. # View all events in a logbook
  57. logbook:
  58.  
  59. # Enables a map showing the location of tracked devices
  60. map:
  61.  
  62. # Track the sun
  63. sun:
  64. elevation: 116
  65.  
  66. # Weather prediction
  67. sensor:
  68. - platform: yr
  69. name: Weather
  70. forecast: 24
  71. monitored_conditions:
  72. - temperature
  73. - symbol
  74. - precipitation
  75. - windSpeed
  76. - pressure
  77. - windDirection
  78. - humidity
  79. - fog
  80. - cloudiness
  81. - lowClouds
  82. - mediumClouds
  83. - highClouds
  84. - dewpointTemperature
  85.  
  86.  
  87. # Text to speech
  88. tts:
  89. - platform: google
  90.  
  91. # Cloud
  92. cloud:
  93. alexa:
  94. filter:
  95. include_entities:
  96. - group.living_room
  97. - group.kitchen
  98. - group.bedroom
  99. - group.hallway
  100. - group.lights
  101. - group.goodnight
  102. include_domains:
  103. - switch
  104. exclude_entities:
  105. - group.other
  106. exclude_domains:
  107. - script
  108.  
  109. group: !include groups.yaml
  110. automation: !include automations.yaml
  111. script: !include scripts.yaml
  112.  
  113. tellstick:
  114. signal_repetitions: 2
  115. host: core-tellstick
  116. port: [50800, 50801]
  117.  
  118. light:
  119. platform: tellstick
  120.  
  121. switch:
  122. platform: tellstick
  123.  
  124.  
  125. # Example configuration.yaml entry
  126. #volvooncall:
  127. # username: Sebbe_Eldin@hotmail.com
  128. # password: NEGRARPÅLEKIS-ÅÄÖ
  129.  
  130. media_player:
  131. - platform: kodi
  132. host: 10.13.37.20
  133. name: Kodi
  134. - platform: heos
  135. host: 10.13.37.159
  136. name: Heos1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement