Advertisement
Guest User

error

a guest
Feb 8th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 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.  
  35.  
  36.  
  37. weather:
  38. - platform: darksky
  39. api_key: +
  40. mode: daily
  41.  
  42.  
  43. # Netatmo
  44. netatmo:
  45. api_key: +
  46. secret_key: +
  47. username: +
  48. password: +
  49.  
  50. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  51. # http:
  52. # base_url: example.duckdns.org:8123
  53.  
  54. # Checks for available updates
  55. # Note: This component will send some information about your system to
  56. # the developers to assist with development of Home Assistant.
  57. # For more information, please see:
  58. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  59. updater:
  60. # Optional, allows Home Assistant developers to focus on popular components.
  61. # include_used_components: true
  62.  
  63. # Discover some devices automatically
  64. discovery:
  65.  
  66. # Allows you to issue voice commands from the frontend in enabled browsers
  67. conversation:
  68.  
  69. # Enables support for tracking state changes over time
  70. history:
  71.  
  72. # View all events in a logbook
  73. logbook:
  74.  
  75. # Enables a map showing the location of tracked devices
  76. map:
  77.  
  78. # Track the sun
  79. sun:
  80.  
  81.  
  82.  
  83. # Sensors
  84. sensor: !include sensors.yaml
  85.  
  86. # Weather prediction
  87. - platform: yr
  88.  
  89. # Text to speech
  90. tts:
  91. - platform: google
  92.  
  93. # Cloud
  94. cloud:
  95.  
  96. group: !include groups.yaml
  97. automation: !include automations.yaml
  98. script: !include scripts.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement