Advertisement
Guest User

hassio

a guest
Jun 5th, 2018
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.23 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: 175.50
  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: America/Chicago
  13.   # Customization file
  14.   customize: !include customize.yaml
  15.  
  16. # Show links to resources in log and frontend
  17. introduction:
  18. # Enables the frontend
  19. frontend:
  20. # Enables configuration UI
  21. config:
  22. http:
  23.  # Secrets are defined in the file secrets.yaml
  24.   # api_password: !secret http_password
  25.   # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  26.   # base_url: example.duckdns.org:8123
  27.  
  28. # Checks for available updates
  29. # Note: This component will send some information about your system to
  30. # the developers to assist with development of Home Assistant.
  31. # For more information, please see:
  32. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  33. updater:
  34.  # Optional, allows Home Assistant developers to focus on popular components.
  35.   # include_used_components: true
  36.  
  37. # Discover some devices automatically
  38. discovery:
  39. # Allows you to issue voice commands from the frontend in enabled browsers
  40. conversation:
  41. # Enables support for tracking state changes over time
  42. history:
  43. # View all events in a logbook
  44. logbook:
  45. # Enables a map showing the location of tracked devices
  46. map:
  47. # Track the sun
  48. sun:
  49. # Example configuration.yaml entry
  50. sensor:
  51.   - platform: time_date
  52.     display_options:
  53.      - 'date'
  54.       - 'time'
  55.  
  56. device_tracker:
  57.   - platform: tile
  58.     username: **********************@gmail.com
  59.     password: **********************
  60.  
  61.  
  62.  
  63. # Example configuration.yaml entry
  64. media_player:
  65.   - platform: onkyo
  66.     host: 192.168.1.87
  67.     name: Basement Hi-fi
  68.     sources:
  69.       pc: 'HTPC'
  70.  
  71. sensor:
  72.   - platform: fastdotcom
  73.     minute:
  74.      - 0
  75.       - 15
  76.       - 30
  77.       - 45
  78.  
  79. sensor:
  80.   - platform: systemmonitor
  81.     resources:
  82.       - type: disk_use_percent
  83.         arg: /home
  84.       - type: memory_free
  85.       - type: swap_use_percent
  86.       - type: processor_use
  87.  
  88.  
  89. weather:
  90.   - platform: openweathermap
  91.     api_key: **********************
  92.     name: Weather
  93.  
  94. tts:
  95.   - platform: google
  96.  
  97. # Cloud
  98. cloud:
  99. panel_iframe:
  100.   terminal:
  101.     title: Terminal
  102.     icon: mdi:console
  103.     url: https://addres.to.your.hass.io:7681
  104.   configurator:
  105.     title: Configurator
  106.     icon: mdi:wrench
  107.     url: http://hassio.local:3218
  108.  
  109. ifttt:
  110.   key: **********************
  111.  
  112. camera:
  113.   - platform: generic
  114.     name: ISS
  115.     still_image_url: https://maps.googleapis.com/maps/api/staticmap?center={{ states.binary_sensor.iss.attributes.lat }},{{ states.binary_sensor.iss.attributes.long }}&zoom=5&size=500x500&maptype=roadmap&markers=color:blue%7Clabel:P%7C{{ states.binary_sensor.iss.attributes.lat }},{{ states.binary_sensor.iss.attributes.long }}
  116.     limit_refetch_to_url_change: true
  117.  
  118. group: !include groups.yaml
  119. automation: !include automations.yaml
  120. script: !include scripts.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement