Advertisement
Guest User

Untitled

a guest
Sep 26th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 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: 45.789301
  6. longitude: 15.928251
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: 145
  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: CET
  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. extra_html_url:
  22. - /local/custom_ui/state-card-floorplan.html
  23.  
  24. # Enables configuration UI
  25. config:
  26.  
  27. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  28. # http:
  29. # base_url: example.duckdns.org:8123
  30.  
  31. # Checks for available updates
  32. # Note: This component will send some information about your system to
  33. # the developers to assist with development of Home Assistant.
  34. # For more information, please see:
  35. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  36. updater:
  37. # Optional, allows Home Assistant developers to focus on popular components.
  38. # include_used_components: true
  39.  
  40. # Allows you to issue voice commands from the frontend in enabled browsers
  41. conversation:
  42.  
  43. # Enables support for tracking state changes over time
  44. history:
  45.  
  46. # View all events in a logbook
  47. logbook:
  48.  
  49. # Enables a map showing the location of tracked devices
  50. map:
  51.  
  52. discovery:
  53. # Weather prediction
  54. # Text to speech
  55. tts:
  56. - platform: google
  57.  
  58. # Cloud:
  59. group: !include groups.yaml
  60. automation: !include automations.yaml
  61. script: !include scripts.yaml
  62.  
  63. mqtt:
  64. broker:
  65. username: admin
  66. password: admin
  67.  
  68. panel_custom:
  69. - name: floorplan
  70. sidebar_title: Tlocrt
  71. sidebar_icon: mdi:home
  72. url_path: floorplan
  73. config: !include floorplan.yaml
  74.  
  75. binary_sensor:
  76. - platform: mqtt
  77. state_topic: dummy/floorplan/sensor
  78. name: floorplan
  79.  
  80. camera:
  81. - platform: generic
  82. name: Vrijeme Zagreb
  83. entity_picture: 'https://www.yr.no/place/Croatia/Zagreb/Zagreb/meteogram.svg'
  84. content_type: 'image/svg+xml'
  85.  
  86. sensor:
  87. - platform: darksky
  88. api_key:
  89. monitored_conditions:
  90. - icon
  91. - temperature
  92. - wind_speed
  93. - wind_bearing
  94. - humidity
  95. - pressure
  96. - platform: speedtest
  97. minute:
  98. - 0
  99. - 45
  100. monitored_conditions:
  101. - ping
  102. - download
  103. - upload
  104.  
  105. device_tracker:
  106. - platform: ping
  107. interval_seconds: 30
  108. consider_home: 1200
  109. hosts:
  110. gordana_p20:
  111. davor_s7_edge:
  112. filip_s7_edge:
  113. vacuum:
  114. - platform: xiaomi_miio
  115. host:
  116. token:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement