Advertisement
Guest User

Untitled

a guest
May 29th, 2019
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.22 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: LAT
  6. longitude: LONG
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: 311
  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/Berlin
  13. # Customization file
  14. customize: !include customize.yaml
  15.  
  16. # Configure a default setup of Home Assistant (frontend, api, etc)
  17. default_config:
  18.  
  19. cloud: !include cloud.yaml
  20.  
  21. # Sensors
  22. sensor: !include sensors.yaml
  23.  
  24. ffmpeg:
  25.  
  26. stream:
  27.  
  28. lovelace:
  29.  
  30. mqtt:
  31. broker: IP
  32. username: USER
  33. password: PW
  34.  
  35. recorder:
  36. include:
  37. entities:
  38. - cover.kevin_1
  39. - cover.kevin_2
  40. - cover.kevin_3
  41. - binary_sensor.spielzimmer_tuer_sensor
  42. - binary_sensor.schlafzimmer_window1_sensor
  43. - binary_sensor.spielzimmer_window1_sensor
  44. - binary_sensor.spielzimmer_window2_sensor
  45. exclude:
  46. entities:
  47. - binary_sensor.remote_ui
  48. - camera.haustur_kamera
  49. - sun.sun
  50. - customizer.customizer
  51. - light.gateway_light_7811dcfae658
  52. - light.stehlampe_1_oben
  53. - light.stehlampe_1_unten
  54. - light.spielzimmer_2
  55. - light.schlafzimmer_2
  56. - sensor.illumination_7811dcfae658
  57. - sensor.iphone_von_kevin_battery_level
  58. domains:
  59. - automation
  60. - script
  61. - updater
  62. - cover
  63. - sensor
  64. customizer:
  65. custom_ui: local
  66.  
  67. notify:
  68. - platform: html5
  69. name: htmlnotify
  70. vapid_pub_key: 'PUB'
  71. vapid_prv_key: 'PRV'
  72. vapid_email: 'E-MAIL'
  73.  
  74. weather:
  75. - platform: openweathermap
  76. api_key: 'API'
  77. latitude: LAT
  78. longitude: LONG
  79.  
  80. python_script:
  81.  
  82. # Text to speech
  83. tts:
  84. - platform: google_translate
  85. service_name: google_say
  86.  
  87. group: !include groups.yaml
  88. automation: !include automations.yaml
  89. script: !include scripts.yaml
  90.  
  91. xiaomi_aqara:
  92. discovery_retry: 5
  93. gateways:
  94. - key: KEY
  95. mac: 'MAC'
  96. host: 'IP'
  97.  
  98. camera:
  99. - platform: mjpeg
  100. name: 'Vorhof Kamera'
  101. mjpeg_url: 'URL (WORKING)'
  102. username: !secret camdooruser
  103. password: !secret camdoorpw
  104. authentication: digest
  105. - platform: generic
  106. name: 'Haustür Kamera'
  107. stream_source: 'rtsp://192.168.2.73:1348/stream0/mobotix.mjpeg'
  108. still_image_url: 'http://192.168.2.73/record/current.jpg'
  109. framerate: 10
  110. username: !secret camdoorbelluser
  111. password: !secret camdoorbellpw
  112.  
  113. #TaHoma Rules
  114. tahoma:
  115. username: !secret tahomauser
  116. password: !secret tahomapw
  117. exclude: [BridgeHUEComponent, HueLampHUEComponent, PodComponent]
  118. ios:
  119. push:
  120. categories:
  121. - name: Morningroutine
  122. identifier: 'morningroutine'
  123. actions:
  124. - identifier: 'START_MORNING'
  125. title: 'Guten Morgen'
  126. destructive: true
  127. media_player:
  128. - platform: samsungtv
  129. name: 'Schlafzimmer TV'
  130. host: IP
  131. port: PORT
  132. mac: 'MAC'
  133. - platform: samsungtv
  134. name: 'Spielzimmer TV'
  135. host: IP
  136. port: PORT
  137. mac: 'MAC'
  138.  
  139.  
  140. switch:
  141. - platform: wake_on_lan
  142. name: 'Computer'
  143. mac_address: 'MAC'
  144. host: 'IP'
  145. turn_off:
  146. service: python_script.shutdownkevinspc
  147.  
  148. #Gruppen
  149. light:
  150. #Spielzimmer
  151. - platform: group
  152. name: Spielzimmer
  153. entities:
  154. - light.stehlampe
  155. - platform: group
  156. name: 'Stehlampe'
  157. entities:
  158. - light.stehlampe_1_oben
  159. - light.stehlampe_1_unten
  160. #Schlafzimmer
  161. - platform: group
  162. name: 'Schlafzimmer'
  163. entities:
  164. - light.deckenleuchte
  165. - light.schrank
  166. - platform: group
  167. name: 'Deckenleuchte'
  168. entities:
  169. - light.deckenleuchte_1
  170. - light.deckenleuchte_2
  171. - light.deckenleuchte_3
  172. - platform: group
  173. name: 'Traktorlounge Bootslampen'
  174. entities:
  175. - light.traktorlounge_bootslampe_1
  176. - light.traktorlounge_bootslampe_2
  177. cover:
  178. # Spielzimmer
  179. - platform: group
  180. name: Spielzimmer
  181. entities:
  182. - cover.kevin_2
  183. - cover.kevin_3
  184. # Schlafzimmer
  185. - platform: group
  186. name: Schlafzimmer
  187. entities:
  188. - cover.kevin_1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement