Advertisement
Guest User

configuration.yaml

a guest
Feb 9th, 2018
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.69 KB | None | 0 0
  1. homeassistant:
  2.  # Name of the location where Home Assistant is running
  3.     name: <removed for privacy>
  4.  # Location required to calculate the time the sun rises and sets
  5.     latitude: <removed for privacy>
  6.     longitude: <removed for privacy>
  7.  # Impacts weather/sunrise data (altitude above sea level in meters)
  8.     elevation: <removed for privacy>
  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/London
  13.   # Customization file
  14.     customize: !include customize.yaml
  15.   # Custom Packages
  16.     packages: !include_dir_named packages
  17.  
  18. python_script:  
  19.  
  20.   # Nest Thermostat integration
  21. nest:
  22.  client_id: <removed for privacy>
  23.  client_secret: <removed for privacy>
  24. # Show links to resources in log and frontend
  25. # introduction:
  26.  
  27. # Enables the frontend
  28. frontend:
  29. # Enables configuration UI
  30. config:
  31. http:
  32.  # Secrets are defined in the file secrets.yaml
  33.   # api_password: !secret http_password
  34.   # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  35.     base_url: <removed for privacy>
  36.     ssl_certificate: /ssl/fullchain.pem
  37.     ssl_key: /ssl/privkey.pem
  38.  
  39. # Checks for available updates
  40. # Note: This component will send some information about your system to
  41. # the developers to assist with development of Home Assistant.
  42. # For more information, please see:
  43. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  44. updater:
  45.  # Optional, allows Home Assistant developers to focus on popular components.
  46.    include_used_components: true
  47.  
  48. # Discover some devices automatically
  49. discovery:
  50. # Allows you to issue voice commands from the frontend in enabled browsers
  51. # conversation:
  52.  
  53. # Enables support for tracking state changes over time
  54. # history:
  55.  
  56. # View all events in a logbook
  57. # logbook:
  58.  
  59. # Enables a map showing the location of tracked devices
  60. map:
  61. # Track the sun
  62. sun:
  63. # Weather prediction
  64. # nothing here
  65.  
  66. # Text to speech
  67. tts:
  68.   - platform: google
  69.  
  70. # Cloud
  71. cloud:
  72. group: !include groups.yaml
  73. automation: !include automations.yaml
  74. script: !include scripts.yaml
  75.  
  76. # Google Assistant Integration
  77. google_assistant:
  78.   project_id: <removed for privacy>
  79.   client_id: <removed for privacy>
  80.   access_token: <removed for privacy>
  81.  #agent_user_id: [a string to identify user]
  82.   #api_key: [a Homegraph API Key generated for the Google Actions project]
  83.   exposed_domains:
  84.    - cover
  85.   #entity_config:
  86.   #  switch.kitchen:
  87.   #    name: Custom Name for Google Assistant
  88.   #    aliases:
  89.   #      - bright lights
  90.   #      - entry lights
  91.   #    type: light
  92.   #  light.living_room:
  93.   #    expose: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement