Advertisement
Guest User

Untitled

a guest
Jun 5th, 2018
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.97 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: 38.5106090
  6.   longitude: -90.4720220
  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. # ISS
  50. camera:
  51.   - platform: generic
  52.     name: ISS
  53.     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 }}
  54.     limit_refetch_to_url_change: true
  55.  
  56. # Example configuration.yaml entry
  57. sensor:
  58.   - platform: time_date
  59.     display_options:
  60.       - 'date'
  61.        - 'time'
  62.  
  63.       # Text to speech
  64.      
  65. device_tracker:
  66.   - platform: tile
  67.     username: REDACTED
  68.     password: REDACTED
  69.    
  70.    
  71.    
  72. # Example configuration.yaml entry
  73. media_player:
  74.   - platform: onkyo
  75.     host: 192.168.1.87
  76.     name: Basement Hi-fi
  77.     sources:
  78.       pc: 'HTPC'
  79.      
  80. sensor:
  81.   - platform: fastdotcom
  82.     minute:
  83.      - 0
  84.       - 15
  85.       - 30
  86.       - 45
  87.      
  88. sensor:
  89.   - platform: systemmonitor
  90.     resources:
  91.     - type: last_boot    
  92.       - type: disk_use_percent
  93.         arg: /home
  94.       - type: memory_free
  95.       - type: swap_use_percent
  96.       - type: processor_use
  97.       - type: since_last_boot
  98.      
  99.      
  100.       weather:
  101.   - platform: openweathermap
  102.     api_key: REDACTED
  103.      
  104. tts:
  105.   - platform: google
  106.  
  107. # Cloud
  108. cloud:
  109. group: !include groups.yaml
  110. automation: !include automations.yaml
  111. script: !include scripts.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement