Advertisement
Guest User

error3

a guest
Feb 6th, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.94 KB | None | 0 0
  1. homeassistant:
  2. packages: !include_dir_named packages
  3. # Name of the location where Home Assistant is running
  4. name: Home
  5.  
  6.  
  7.  
  8. # Location required to calculate the time the sun rises and sets
  9. latitude: ++
  10. longitude: ++
  11. # Impacts weather/sunrise data (altitude above sea level in meters)
  12. elevation: 0
  13. # metric for Metric, imperial for Imperial
  14. unit_system: metric
  15. # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  16. time_zone: Europe/Rome
  17. # Customization file
  18. customize: !include customize.yaml
  19.  
  20.  
  21. # Show links to resources in log and frontend
  22. introduction:
  23.  
  24. # Enables the frontend
  25. frontend:
  26. themes: !include_dir_merge_named themes/
  27.  
  28. # Enables configuration UI
  29. config:
  30.  
  31. # light
  32. lights: !include lights.yaml
  33.  
  34. sensor:
  35. - platform: time_date
  36. display_options:
  37. - 'time'
  38. - 'date'
  39. - 'date_time'
  40. - 'time_date'
  41. - 'time_utc'
  42. - 'beat'
  43.  
  44.  
  45.  
  46.  
  47. # Broadlink mini
  48. switch:
  49. - platform: broadlink
  50. host: 192.168.1.235
  51. mac: '78:0F:77:5A:DE:63'
  52. friendly_name: Broadlink mini
  53. type: rm
  54. switches:
  55. learner:
  56. friendly_name: "Learner"
  57. command_on: 'JgBgAAABLZMTEhMSFBETExMRFBITEhMSEjgUNhM3EjkTERQ3EzcRORM3EzcTEhQREhMTExEUEhMTEhMSEjkTNhI4FTYRORE4FQAFQgABLEoRAAxWAAErSxIADFQAASxKEgANBQAAAAAAAAAA'
  58. command_off: 'JgBwAAABKJYRFREVERUSFBIUFBISFBI4EjgSOBM2EjgSOBE4EjgSFBIVETgSFBI4EjgRFRIUEhQSOBIUEjgRFRIUEjgROBI4EgAFFwABKEsSAAxgAAEoSxIADGEAAShLEgAMYQABJ0wRAAxhAAEoSxEADQUAAAAAAAAAAA=='
  59.  
  60.  
  61.  
  62.  
  63. weather:
  64. - platform: darksky
  65. api_key: ++
  66. mode: daily
  67.  
  68.  
  69. # Netatmo
  70. netatmo:
  71. api_key: ++
  72. secret_key: ++
  73. username: ++
  74. password: ++
  75.  
  76. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  77. # http:
  78. # base_url: example.duckdns.org:8123
  79.  
  80. # Checks for available updates
  81. # Note: This component will send some information about your system to
  82. # the developers to assist with development of Home Assistant.
  83. # For more information, please see:
  84. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  85. updater:
  86. # Optional, allows Home Assistant developers to focus on popular components.
  87. # include_used_components: true
  88.  
  89. # Discover some devices automatically
  90. discovery:
  91.  
  92. # Allows you to issue voice commands from the frontend in enabled browsers
  93. conversation:
  94.  
  95. # Enables support for tracking state changes over time
  96. history:
  97.  
  98. # View all events in a logbook
  99. logbook:
  100.  
  101. # Enables a map showing the location of tracked devices
  102. map:
  103.  
  104. # Track the sun
  105. sun:
  106.  
  107.  
  108.  
  109. # Sensors
  110. sensor: !include sensors.yaml
  111.  
  112.  
  113.  
  114.  
  115.  
  116. # Text to speech
  117. tts:
  118. - platform: google
  119.  
  120. # Cloud
  121. cloud:
  122.  
  123. group: !include groups.yaml
  124. automation: !include automations.yaml
  125. script: !include scripts.yaml
  126.  
  127.  
  128. telegram_bot:
  129. - platform: polling
  130. api_key: ++
  131. allowed_chat_ids:
  132. - ++
  133.  
  134. notify:
  135. - name: telegram
  136. platform: telegram
  137. chat_id: ++
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement