Advertisement
Guest User

Untitled

a guest
Jan 15th, 2019
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.37 KB | None | 0 0
  1. homeassistant:
  2. # Name of the location where Home Assistant is running
  3. name: !secret home_name
  4. # Location required to calculate the time the sun rises and sets
  5. latitude: !secret home_latitude
  6. longitude: !secret home_longitude
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: !secret home_elevation
  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. # Customization file
  14. customize: !include customize.yaml
  15.  
  16. # Enables configuration UI
  17. config:
  18.  
  19. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  20. http:
  21. api_password: !secret http_api_password
  22. use_x_forwarded_for: true
  23. trusted_proxies:
  24. - !secret http_trusted_proxy
  25.  
  26. # Checks for available updates
  27. # Note: This component will send some information about your system to
  28. # the developers to assist with development of Home Assistant.
  29. # For more information, please see:
  30. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  31. #updater:
  32. # Optional, allows Home Assistant developers to focus on popular components.
  33. # include_used_components: true
  34.  
  35. # Discover some devices automatically
  36. #discovery:
  37.  
  38. # Allows you to issue voice commands from the frontend in enabled browsers
  39. #conversation:
  40.  
  41. # Enables support for tracking state changes over time
  42. history:
  43.  
  44. # View all events in a logbook
  45. logbook:
  46.  
  47. # Enables a map showing the location of tracked devices
  48. map:
  49.  
  50. # Track the sun
  51. sun:
  52.  
  53. # Text to speech
  54. tts:
  55. - platform: google
  56. language: 'nl'
  57.  
  58. # Cloud
  59. #cloud:
  60.  
  61. hue:
  62. bridges:
  63. - host: XXX
  64.  
  65. media_player:
  66. - platform: plex
  67. - platform: braviatv
  68. host: XXX
  69. name: TV Slaapkamer
  70. - platform: ziggo_mediabox_xl
  71. host: XXX
  72. name: TV Woonkamer Mediabox
  73.  
  74. cast:
  75. media_player:
  76. - host: XXX
  77. - host: XXX
  78. - host: XXX
  79. # - host: XXX
  80.  
  81. toon:
  82. username: !secret toon_username
  83. password: !secret toon_password
  84.  
  85. camera:
  86. - platform: synology
  87. url: XXX
  88. username: !secret synology_username
  89. password: !secret synology_password
  90. verify_ssl: false
  91.  
  92. zwave:
  93. usb_path: /tmp/ttyAMA0
  94. # device_config:
  95. # cover.fibaro_system_fgrm222_roller_shutter_controller_2_level_2:
  96. # invert_openclose_buttons: true
  97. # cover.fibaro_system_fgrm222_roller_shutter_controller_2_level:
  98. # invert_openclose_buttons: true
  99.  
  100. logger:
  101. default: debug
  102. logs:
  103. homeassistant.components.graphite: info
  104. homeassistant.components.websocket_api.http.connection: info
  105.  
  106. lovelace:
  107. mode: yaml
  108.  
  109. mqtt:
  110. broker: XXX
  111. username: !secret mqtt_username
  112. password: !secret mqtt_password
  113.  
  114. owntracks:
  115.  
  116. graphite:
  117. host: XXX
  118.  
  119. recorder:
  120. purge_interval: 1
  121. purge_keep_days: 7
  122. db_url: XXX
  123.  
  124. #emulated_hue:
  125.  
  126. group: !include groups.yaml
  127. automation: !include_dir_merge_list automation/
  128. binary_sensor: !include binary_sensor.yaml
  129. device_tracker: !include device_tracker.yaml
  130. frontend: !include frontend.yaml
  131. #input_boolean: !include input_boolean.yaml
  132. input_select: !include input_select.yaml
  133. ios: !include ios.yaml
  134. light: !include lights.yaml
  135. notify: !include notification.yaml
  136. #recorder: !include recorder.yaml
  137. script: !include scripts.yaml
  138. sensor: !include_dir_merge_list sensors/
  139. switch: !include switches.yaml
  140. zone: !include zones.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement