Advertisement
Guest User

Untitled

a guest
Dec 15th, 2018
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. homeassistant:
  2. # Name of the location where Home Assistant is running
  3. name: Fossveien 11 A
  4. # Location required to calculate the time the sun rises and sets
  5. latitude: 59.7505520
  6. longitude: 10.8340330
  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: Europe/Oslo
  13. # Customization file
  14. customize: !include customize.yaml
  15.  
  16. # Show links to resources in log and frontend
  17. introduction:
  18.  
  19. # Enables the frontend
  20. frontend:
  21.  
  22. # Enables configuration UI
  23. config:
  24.  
  25. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  26. # http:
  27. # base_url: example.duckdns.org:8123
  28.  
  29. # Checks for available updates
  30. # Note: This component will send some information about your system to
  31. # the developers to assist with development of Home Assistant.
  32. # For more information, please see:
  33. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  34. updater:
  35. # Optional, allows Home Assistant developers to focus on popular components.
  36. # include_used_components: true
  37.  
  38. # Discover some devices automatically
  39. discovery:
  40.  
  41. # Allows you to issue voice commands from the frontend in enabled browsers
  42. conversation:
  43.  
  44. # Enables support for tracking state changes over time
  45. history:
  46.  
  47. # View all events in a logbook
  48. logbook:
  49.  
  50. # Enables a map showing the location of tracked devices
  51. map:
  52.  
  53. # Track the sun
  54. sun:
  55.  
  56. # Weather prediction
  57. weather:
  58. - platform: met
  59.  
  60. # Buss timetable
  61. sensor buss:
  62. platform: ruter
  63. stopid: 2130501
  64. destination: 'Drøbak-Seiersten'
  65.  
  66. # Text to speech
  67. tts:
  68. - platform: google
  69.  
  70.  
  71. # Cloud
  72. cloud:
  73.  
  74. group: !include groups.yaml
  75. automation: !include automations.yaml
  76. script: !include scripts.yaml
  77.  
  78. zwave:
  79. usb_path: /dev/ttyACM0
  80.  
  81.  
  82. verisure:
  83. username: follox@gmail.com
  84. password: !secret verisure_pw
  85. locks: 1
  86. smartplugs: 1
  87. alarm: 1
  88. hygrometers: 1
  89. thermometers: 1
  90. door_window: 1
  91.  
  92. climate:
  93. - platform: verisureclimate
  94. username: follox@gmail.com
  95. password: !secret verisure_pw
  96.  
  97. ring:
  98. username: follox@gmail.com
  99. password: !secret ring_pw
  100.  
  101. binary_sensor:
  102. - platform: ring
  103.  
  104. http:
  105. base_url: https://tukun.duckdns.org:8123
  106. ssl_certificate: /ssl/fullchain.pem
  107. ssl_key: /ssl/privkey.pem
  108.  
  109. switch:
  110. - platform: command_line
  111. switches:
  112. aeotec_zstick_disco_light:
  113. friendly_name: 'Aeotec Z-Stick Disco Light'
  114. command_on: 'echo -e -n "\x01\x08\x00\xF2\x51\x01\x01\x05\x01\x50" > /dev/serial/by-id/usb-0658_0200-if00'
  115. command_off: 'echo -e -n "\x01\x08\x00\xF2\x51\x01\x00\x05\x01\x51" > /dev/serial/by-id/usb-0658_0200-if00'
  116.  
  117.  
  118. remote:
  119. - platform: harmony
  120. name: Harmony Hub
  121. host: 192.168.1.199
  122.  
  123.  
  124. timer:
  125. bad_oppe:
  126. duration: '00:10:00'
  127. bad_nede:
  128. duration: '00:03:00'
  129.  
  130.  
  131. lifx:
  132. light:
  133.  
  134.  
  135. media_player:
  136. - platform: samsungtv
  137. host: 192.168.1.60
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement