Advertisement
Guest User

Untitled

a guest
Dec 27th, 2018
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 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: 0
  6. longitude: 0
  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: UTC
  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. panel_iframe:
  23. configurator:
  24. title: Configurator
  25. icon: mdi:wrench
  26. url: http://192.168.1.43:3218
  27.  
  28. # Enables configuration UI
  29. config:
  30.  
  31. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  32. # http:
  33. # base_url: example.duckdns.org:8123
  34.  
  35. # Checks for available updates
  36. # Note: This component will send some information about your system to
  37. # the developers to assist with development of Home Assistant.
  38. # For more information, please see:
  39. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  40. updater:
  41. # Optional, allows Home Assistant developers to focus on popular components.
  42. # include_used_components: true
  43.  
  44. # Discover some devices automatically
  45. discovery:
  46.  
  47. # Allows you to issue voice commands from the frontend in enabled browsers
  48. conversation:
  49.  
  50. # Enables support for tracking state changes over time
  51. history:
  52.  
  53. # View all events in a logbook
  54. logbook:
  55.  
  56. # Enables a map showing the location of tracked devices
  57. map:
  58.  
  59. mqtt:
  60. broker: 192.168.1.43
  61. username: yyyyyyyyyyyyyyyyyyyy
  62. password: zzzzzzzzzzzzzzzzzzzz
  63. client_id: home-assistant
  64. discovery: true
  65.  
  66. # Track the sun
  67. sun:
  68.  
  69. # Switch
  70. switch:
  71. platform: mqtt
  72. name: "sonoff"
  73. command_topic: "cmnd/sonoff/power"
  74. state_topic: "stat/sonoff/POWER"
  75. qos: 1
  76. payload_on: "ON"
  77. payload_off: "OFF"
  78. retain: true
  79.  
  80. # Sensors
  81. sensor:
  82. # Weather prediction
  83. - platform: yr
  84.  
  85. # Text to speech
  86. tts:
  87. - platform: google
  88.  
  89. # Cloud
  90. cloud:
  91.  
  92. group: !include groups.yaml
  93. automation: !include automations.yaml
  94. script: !include scripts.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement