Advertisement
Guest User

Untitled

a guest
Jan 2nd, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 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:
  6. longitude:
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: 20
  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/Los_Angeles
  13. customize: !include_dir_merge_named customize/
  14.  
  15. # Show links to resources in log and frontend
  16. #introduction:
  17.  
  18. # Log
  19. #logger:
  20. # default: error
  21. logger:
  22. default: error
  23. logs:
  24. insteonplm: debug
  25. homeassistant.components.light.insteon_plm: debug
  26. homeassistant.components.switch.insteon_plm: debug
  27.  
  28. # Enables the frontend
  29. frontend:
  30.  
  31. http:
  32. # Uncomment this to add a password (recommended!)
  33. api_password:
  34.  
  35. # Checks for available updates
  36. updater:
  37.  
  38. # Discover some devices automatically
  39. discovery:
  40.  
  41. # Allows you to issue voice commands from the frontend in enabled browsers
  42. conversation:
  43.  
  44. # Enables support for tracking state changes over time.
  45. history:
  46.  
  47. # View all events in a logbook
  48. logbook:
  49.  
  50. # Enable IFTTT
  51. ifttt:
  52. key:
  53.  
  54. # Enable NMAP Scans
  55. device_tracker:
  56. - platform: nmap_tracker
  57. hosts:
  58. interval_seconds: 60
  59. consider_home: 600
  60. home_interval: 10
  61.  
  62. # Track the sun
  63. sun:
  64.  
  65. # Media Player
  66. media_player:
  67. # - platform: firetv
  68. - platform: plex
  69.  
  70. # Ecobees
  71. ecobee:
  72. api_key:
  73.  
  74. # Insteon Hub
  75. #insteon_local:
  76. # host:
  77. # username:
  78. # password:
  79.  
  80. # Insteon PLM
  81. insteon_plm:
  82. port: /dev/ttyS0
  83.  
  84. # Zwave Controller
  85. #zwave:
  86. # usb_path: /zwave
  87. # polling_interval: 600000
  88.  
  89. # Philips Hue and Insteon Lights
  90. light:
  91. - platform: hue
  92. # - platform: insteon_local
  93.  
  94. switch:
  95. # - platform: insteon_local
  96.  
  97. ##### Groups #####
  98. group: !include_dir_merge_named groups/
  99.  
  100. ##### Scenes #####
  101. scene: !include_dir_list scene/
  102.  
  103. ##### Automation Rules #####
  104. automation: !include_dir_merge_list automation/
  105.  
  106. ##### Scripts #####
  107. script: !include_dir_merge_named script/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement