Advertisement
Guest User

Untitled

a guest
Jan 29th, 2017
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. homeassistant:
  2. name: Home
  3. latitude: !secret latitude
  4. longitude: !secret longitude
  5. elevation: 1652
  6. unit_system: imperial
  7. time_zone: !secret time_zone
  8. customize: !include customize.yaml
  9.  
  10. frontend:
  11.  
  12. http:
  13. api_password: !secret http_password
  14. ssl_certificate: !secret ssl_certificate
  15. ssl_key: !secret ssl_key
  16. ip_ban_enabled: True
  17. login_attempts_threshold: 3
  18.  
  19.  
  20. updater:
  21.  
  22. discovery:
  23.  
  24. conversation:
  25.  
  26. history:
  27.  
  28. logbook:
  29.  
  30. automation: !include automation.yaml
  31.  
  32. group: !include group.yaml
  33.  
  34. #input_boolean: !include input_boolean.yaml
  35.  
  36. scene: !include scene.yaml
  37.  
  38. script: !include script.yaml
  39.  
  40. sensor: !include sensor.yaml
  41.  
  42. zone: !include zone.yaml
  43.  
  44. cover:
  45. - platform: myq
  46. name: Garage
  47. username: !secret cover_username
  48. password: !secret cover_password
  49. brand: liftmaster
  50.  
  51. device_tracker:
  52. - platform: bluetooth_tracker
  53. track_new_devices: no
  54. - platform: owntracks
  55. - platform: nmap_tracker
  56. hosts: 192.168.86.1/24
  57. home_interval: 10
  58. consider_home: 180
  59. track_new_devices: no
  60.  
  61. ecobee:
  62. api_key: !secret ecobee_key
  63. hold_temp: False
  64.  
  65. ifttt:
  66. key: !secret ifttt_key
  67.  
  68. hdmi_cec:
  69. devices:
  70. TV: 0.0.0.0
  71. Apple TV: 2.0.0.0
  72.  
  73. mqtt:
  74. broker: !secret mqtt_broker
  75. port: !secret mqtt_port
  76. client_id: home-assistant
  77. keepalive: 60
  78. username: hass
  79. password: !secret mqtt_password
  80.  
  81. notify:
  82. - platform: joaoapps_join
  83. device_id: group.all
  84. name: join
  85. api_key: !secret join_apikey
  86.  
  87. zwave:
  88. usb_path: /dev/ttyACM0
  89. config_path: /srv/hass/hass_venv/lib/python3.4/site-packages/libopenzwave-0.3.1-py3.4-linux-armv7l.egg/config
  90. polling_interval: 10000 # Polling speed in miliseconds
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement