Advertisement
Guest User

qwertasdf

a guest
Apr 27th, 2017
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 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: 47.468017
  6. longitude: 19.162311
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: 109
  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/Budapest
  13.  
  14. # Show links to resources in log and frontend
  15. introduction:
  16.  
  17. # Enables the frontend
  18. frontend:
  19.  
  20. # Enables configuration UI
  21. config:
  22.  
  23. http:
  24. # Uncomment this to add a password (recommended!)
  25. # api_password: PASSWORD
  26. # Uncomment this if you are using SSL or running in Docker etc
  27. # base_url: example.duckdns.org:8123
  28.  
  29. # Checks for available updates
  30. updater:
  31.  
  32. # Discover some devices automatically
  33. discovery:
  34.  
  35. # Allows you to issue voice commands from the frontend in enabled browsers
  36. conversation:
  37.  
  38. # Enables support for tracking state changes over time.
  39. history:
  40.  
  41. # View all events in a logbook
  42. logbook:
  43.  
  44. # Track the sun
  45. sun:
  46.  
  47. # Weather Prediction
  48. sensor:
  49. - platform: yr
  50. - platform: systemmonitor
  51. resources:
  52. - type: disk_use_percent
  53. arg: /home
  54. - type: memory_free
  55. - platform: statistics
  56. entity_id: sensor.cpu
  57. - platform: statistics
  58. entity_id: binary_sensor.movement
  59.  
  60. media_player:
  61. - platform: kodi
  62. host: 192.168.3.101
  63. port: 80
  64.  
  65. switch:
  66. - platform: orvibo
  67. discovery: false
  68. switches:
  69. - host: 192.168.3.105
  70. - host: 192.168.3.106
  71. - host: 192.168.3.107
  72.  
  73. camera:
  74. - platform: foscam
  75. ip: 192.168.3.106
  76. username: zselo
  77. password: don5321
  78.  
  79. - platform: generic
  80. still_image_url: http://webkamera.kozut.hu/a017/webcam1.jpg
  81. name: M0 # Location
  82.  
  83. mqtt:
  84. broker: m12.cloudmqtt.com
  85. port: 18085
  86. username: aaaoahhc
  87. password: P-Ska8W4plMi
  88.  
  89. device_tracker:
  90. - platform: owntracks
  91. max_gps_accuracy: 200
  92.  
  93. notify:
  94. - name: zselo
  95. platform: pushbullet
  96. api_key: o.2mOspK0rzOpwPmTbwAL5wU1BTW9uIs9Q
  97.  
  98. zone:
  99. name: Otthon
  100. latitude: 47.468017
  101. longitude: 19.162311
  102. radius: 130
  103. icon: mdi:home
  104.  
  105. zone 2:
  106. name: Munka
  107. latitude: 47.498043
  108. longitude: 19.065700
  109. radius: 130
  110. icon: mdi:worker
  111.  
  112. zone 3:
  113. name: Műhely
  114. latitude: 47.456716
  115. longitude: 19.182440
  116. radius: 130
  117. icon: mdi:rocket
  118.  
  119. zone 4:
  120. name: Suli
  121. latitude: 47.467619
  122. longitude: 19.159572
  123. radius: 130
  124. icon: mdi:rocket
  125.  
  126. automation:
  127. - alias: 'Send notification when sun rises'
  128. trigger:
  129. platform: sun
  130. event: sunrise
  131. offset: '+00:00:00'
  132. action:
  133. service: notify.pushbullet
  134. data:
  135. message: 'The sun is up.'
  136. - alias: 'Send notification when sun sets'
  137. trigger:
  138. platform: sun
  139. event: sunset
  140. offset: '+00:00:00'
  141. action:
  142. service: notify.pushbullet
  143. data:
  144. message: 'The sun is down.'
  145.  
  146.  
  147.  
  148. # Text to speech
  149. tts:
  150. platform: google
  151.  
  152. group: !include groups.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement