Advertisement
Guest User

Untitled

a guest
Jan 2nd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.63 KB | None | 0 0
  1. homeassistant:
  2.  # Name of the location where Home Assistant is running
  3.   name: Gunnebogatan 54
  4.   # Location required to calculate the time the sun rises and sets
  5.   latitude: 57.7167
  6.   longitude: 11.9667
  7.   # Impacts weather/sunrise data (altitude above sea level in meters)
  8.   elevation: 3
  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/Stockholm
  13.   # Customization file
  14.   customize: !include customize.yaml
  15.    
  16.  
  17. # Enables the frontend
  18. frontend:
  19. # Enables configuration UI
  20. config:
  21. http:
  22.  # Secrets are defined in the file secrets.yaml
  23.   # api_password: !secret http_password
  24.   # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  25.   # base_url: example.duckdns.org:8123
  26.  
  27. # Checks for available updates
  28. # Note: This component will send some information about your system to
  29. # the developers to assist with development of Home Assistant.
  30. # For more information, please see:
  31. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  32. updater:
  33.  # Optional, allows Home Assistant developers to focus on popular components.
  34.   # include_used_components: true
  35.  
  36. # Discover some devices automatically
  37. discovery:
  38. # Allows you to issue voice commands from the frontend in enabled browsers
  39. conversation:
  40. # Enables support for tracking state changes over time
  41. history:
  42. # View all events in a logbook
  43. logbook:
  44. # Enables a map showing the location of tracked devices
  45. map:
  46. # Track the sun
  47. sun:
  48. # Weather
  49. sensor:
  50.     platform: yr
  51.     name: Weather
  52.     forecast: 24
  53.     monitored_conditions:
  54.      - temperature
  55.       - windSpeed
  56.  
  57. # Text to speech
  58. tts:
  59.   - platform: google
  60.  
  61. # Cloud
  62. cloud:
  63. group: !include groups.yaml
  64. automation: !include automations.yaml
  65. script: !include scripts.yaml
  66.  
  67. # Verisure
  68. verisure:
  69.   username: daniel.liebst@gmail.com
  70.   password: saddam08
  71.  
  72.   # Media Players
  73. media_player:
  74.   - platform: sonos
  75.     hosts:
  76.      - 192.168.1.24
  77.       - 192.168.1.5
  78.    
  79.   - platform: onkyo
  80.     host: 192.168.1.12
  81.     name: Receiver
  82.  
  83.   # Canary
  84. canary:
  85.   username: daniel.liebst@gmail.com
  86.   password: saddam08
  87.  
  88.   # Rfx
  89. rfxtrx:
  90.   device: /dev/serial/by-id/usb-RFXCOM_RFXtrx433_A121J4C1-if00-port0
  91.  
  92.   # Switch
  93.       switch:
  94.   platform: rfxtrx
  95.   automatic_add: True
  96.    
  97.     # Västtrafik
  98. sensor:
  99.   - platform: vasttrafik
  100.     key: tYnA2HUzwTB7FJo9T6nxN5QxzSAa
  101.     secret: EpYfekOgarvQm5MbQbBso3F_Fzka
  102.     departures:
  103.       - name: Mot Korsvägen
  104.         from: Brobergsgatan
  105.         heading: Muraregatan
  106.         delay: 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement