Advertisement
Guest User

cinfiguration

a guest
Jan 8th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 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: !secret latitude
  6. longitude: !secret longitude
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: !secret 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/Oslo
  13. # Customization file
  14. customize: !include customize.yaml
  15.  
  16. # Show links to resources in log and frontend
  17. introduction:
  18.  
  19. # Enables the frontend
  20. frontend:
  21.  
  22. # Enables configuration UI
  23. config:
  24.  
  25. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  26. # http:
  27. # base_url: example.duckdns.org:8123
  28.  
  29. # Checks for available updates
  30. # Note: This component will send some information about your system to
  31. # the developers to assist with development of Home Assistant.
  32. # For more information, please see:
  33. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  34. updater:
  35. # Optional, allows Home Assistant developers to focus on popular components.
  36. # include_used_components: true
  37.  
  38. # Discover some devices automatically
  39. discovery:
  40. ignore:
  41. - apple_tv
  42.  
  43. # Allows you to issue voice commands from the frontend in enabled browsers
  44. conversation:
  45.  
  46. # Enables support for tracking state changes over time
  47. history:
  48.  
  49. # View all events in a logbook
  50. logbook:
  51.  
  52. # Enables a map showing the location of tracked devices
  53. map:
  54.  
  55. # Track the sun
  56.  
  57. # Sensors
  58.  
  59. # Text to speech
  60.  
  61. # Cloud
  62.  
  63. #Include script
  64. automation: !include automations.yaml
  65. script: !include scripts.yaml
  66. sensor: !include sensor.yaml
  67. scripts: !include scripts.yaml
  68. camera: !include camera.yaml
  69. secret: !include secrets.yaml
  70.  
  71. panel_iframe:
  72. configurator:
  73. title: Configurator
  74. icon: mdi:wrench
  75. url: http://192.168.10.132:3218
  76.  
  77. nodered:
  78. title: Node-RED
  79. icon: mdi:sitemap
  80. url: http://192.168.10.132:1880
  81.  
  82.  
  83.  
  84. #Mqtt broker
  85. mqtt:
  86. broker: 192.168.10.132
  87.  
  88. asuswrt:
  89. host: 192.168.10.184
  90. username: !secret asuswrt_usr
  91. password: !secret asuswrt_password
  92. protocol: ssh
  93.  
  94. device_tracker:
  95. - platform: asuswrt
  96. interval_seconds: 10
  97. consider_home: 180
  98. track_new_devices: yes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement