Advertisement
Guest User

configuration.yaml

a guest
Jul 6th, 2018
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.45 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: 0
  6.   longitude: 0
  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: UTC
  13.   # Customization file
  14.   customize:
  15.    switch.monitors:
  16.     friendly_name: Monitor Switch
  17.     icon: mdi:monitor-multiple
  18.  
  19.  
  20. # Show links to resources in log and frontend
  21. #introduction:
  22.  
  23. # Enables the frontend
  24. frontend:
  25. # Enables configuration UI
  26. config:
  27. http:
  28.  # Secrets are defined in the file secrets.yaml
  29.   # api_password: !secret http_password
  30.   # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  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. # Allows you to issue voice commands from the frontend in enabled browsers
  45. conversation:
  46. # Enables support for tracking state changes over time
  47. history:
  48. # View all events in a logbook
  49. logbook:
  50. # Enables a map showing the location of tracked devices
  51. map:
  52.  
  53. # link to other files
  54. shell_command: !include shell_commands.yaml
  55.  
  56.  
  57.  
  58. # custom stuff
  59. switch:
  60.   - platform: mystrom
  61.     host: 192.168.1.114
  62.     name: "Monitors"
  63. light:
  64.   - platform: mystrom
  65.     name: Living room
  66.     host: 192.168.1.116
  67.     mac: ZENSIERT
  68.  
  69. media_player:
  70.   - platform: bluesound
  71.     hosts:
  72.       - host: 192.168.1.102
  73.       - host: 192.168.1.103
  74.       - host: 192.168.1.129
  75.    
  76.  
  77.  
  78. sensor:
  79.   - platform: command_line
  80.     name: RP CPU
  81.     command: "cat /sys/class/thermal/thermal_zone0/temp"
  82.     # If errors occur, remove degree symbol below
  83.     unit_of_measurement: "°C"
  84.     value_template: '{{ value | multiply(0.001) | round(1) }}'
  85.  
  86. # Text to speech
  87. tts:
  88.   - platform: google
  89.  
  90. # Cloud
  91. cloud:
  92. group: !include groups.yaml
  93. automation: !include automations.yaml
  94. script: !include scripts.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement