Advertisement
chrisdaloa

test home assistant

Oct 8th, 2018
451
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. homeassistant:
  2. # Name of the location where Home Assistant is running
  3. name: Casa
  4. # Location required to calculate the time the sun rises and sets
  5. latitude: !secret my_latitude
  6. longitude: !secret my_longitude
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: 8
  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 includes/customize.yaml
  15. packages: !include_dir_named packages
  16.  
  17. # Show links to resources in log and frontend
  18. #introduction:
  19.  
  20. http:
  21. api_password: !secret http_password
  22.  
  23. # Enables the frontend
  24. frontend:
  25.  
  26. # Enables configuration UI
  27. config:
  28.  
  29. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  30. # http:
  31. # base_url: example.duckdns.org:8123
  32.  
  33. # Checks for available updates
  34. # Note: This component will send some information about your system to
  35. # the developers to assist with development of Home Assistant.
  36. # For more information, please see:
  37. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  38. updater:
  39. # Optional, allows Home Assistant developers to focus on popular components.
  40. # include_used_components: true
  41.  
  42. # Discover some devices automatically
  43. discovery:
  44.  
  45. # Allows you to issue voice commands from the frontend in enabled browsers
  46. conversation:
  47.  
  48. # Enables support for tracking state changes over time
  49. history:
  50.  
  51. # View all events in a logbook
  52. logbook:
  53.  
  54. # Enables a map showing the location of tracked devices
  55. map:
  56.  
  57. # Track the sun
  58. sun:
  59.  
  60. # Weather prediction
  61. sensor:
  62. - platform: yr
  63.  
  64.  
  65. # Text to speech
  66. tts:
  67. - platform: google
  68.  
  69. # Cloud
  70. cloud:
  71.  
  72. group: !include includes/groups.yaml
  73. automation: !include includes/automations.yaml
  74. script: !include includes/scripts.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement