Advertisement
Guest User

error6

a guest
Feb 7th, 2019
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 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: ++
  6. longitude: ++
  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: Europe/Rome
  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. themes: !include_dir_merge_named themes/
  22.  
  23. # Enables configuration UI
  24. config:
  25.  
  26. # light
  27. tuya:
  28. username: ++
  29. password: ++
  30. country_code: +39
  31. platform: tuya
  32.  
  33.  
  34. weather:
  35. - platform: darksky
  36. api_key: ++
  37. mode: daily
  38.  
  39.  
  40. # Netatmo
  41. netatmo:
  42. api_key: ++
  43. secret_key: ++
  44. username: ++
  45. password: ++
  46.  
  47. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  48. # http:
  49. # base_url: example.duckdns.org:8123
  50.  
  51. # Checks for available updates
  52. # Note: This component will send some information about your system to
  53. # the developers to assist with development of Home Assistant.
  54. # For more information, please see:
  55. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  56. updater:
  57. # Optional, allows Home Assistant developers to focus on popular components.
  58. # include_used_components: true
  59.  
  60. # Discover some devices automatically
  61. discovery:
  62.  
  63. # Allows you to issue voice commands from the frontend in enabled browsers
  64. conversation:
  65.  
  66. # Enables support for tracking state changes over time
  67. history:
  68.  
  69. # View all events in a logbook
  70. logbook:
  71.  
  72. # Enables a map showing the location of tracked devices
  73. map:
  74.  
  75. # Track the sun
  76. sun:
  77.  
  78.  
  79.  
  80. sensor: !include sensors.yaml
  81.  
  82.  
  83.  
  84. recorder:
  85. purge_keep_days: 3
  86. include:
  87. domains:
  88. - automation
  89. - input_boolean
  90. - input_number
  91. - input_datetime
  92. - input_select
  93. - binary_sensor
  94. - sensor
  95. - history_graph
  96.  
  97. history_graph:
  98. gr1:
  99. name: Raspberry's Temperature
  100. entities:
  101. - sensor.cpu_temp
  102. hours_to_show: 48
  103. refresh: 10
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111. # Weather prediction
  112.  
  113.  
  114. # Text to speech
  115. tts:
  116. - platform: google
  117.  
  118. # Cloud
  119. cloud:
  120.  
  121. group: !include groups.yaml
  122. automation: !include automations.yaml
  123. script: !include scripts.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement