Advertisement
Guest User

Untitled

a guest
Dec 28th, 2018
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. homeassistant:
  2.  
  3. name: The Oosterbosch Home
  4. latitude: !secret home_zone_lattitude
  5. longitude: !secret home_zone_longitude
  6. elevation: 90
  7. unit_system: metric
  8. time_zone: Europe/London
  9.  
  10. customize: !include customize.yaml
  11.  
  12. # Enables the frontend
  13. frontend:
  14. themes: !include themes.yaml
  15.  
  16. # Enables configuration UI
  17. config:
  18.  
  19. # SSL Configuration
  20. http:
  21. base_url: ha.travellingbelgian.com:8123
  22. ssl_certificate: /ssl/fullchain.pem
  23. ssl_key: /ssl/privkey.pem
  24.  
  25. # Checks for available updates
  26. updater:
  27.  
  28. # Discover some devices automatically
  29. discovery:
  30.  
  31. # Allows you to issue voice commands from the frontend in enabled browsers
  32. conversation:
  33.  
  34. # Text to speech
  35. tts:
  36. - platform: google
  37.  
  38. # Enables support for tracking state changes over time
  39. history:
  40.  
  41. # View all events in a logbook
  42. logbook:
  43.  
  44. # Enables a map showing the location of tracked devices
  45. map:
  46.  
  47. # Track the sun
  48. sun:
  49.  
  50. # Sensors
  51. sensor:
  52. # Weather prediction
  53. - platform: yr
  54. name: Weather
  55. forecast: 24
  56. monitored_conditions:
  57. - temperature
  58. - symbol
  59. - precipitation
  60. - windSpeed
  61. - pressure
  62. - windDirection
  63. - humidity
  64. - fog
  65. - cloudiness
  66. - lowClouds
  67. - mediumClouds
  68. - highClouds
  69. - dewpointTemperature
  70.  
  71. - platform: worldclock
  72. time_zone: Europe/Brussels
  73. name: Hasselt
  74.  
  75. - platform: worldclock
  76. time_zone: Asia/Bangkok
  77. name: Bangkok
  78.  
  79. - platform: worldclock
  80. time_zone: America/New_York
  81. name: Florida
  82.  
  83. - platform: template
  84. sensors:
  85. sensor.bin_collection:
  86. friendly_name: "Next Bin Collection"
  87. value_template: "{{ states.calendar.bin_collection_dates.attributes.message }}"
  88.  
  89. - platform: template
  90. sensors:
  91. sensor.school_holidays:
  92. value_template: >
  93. {{ strptime(states.calendar.school_holidays.attributes.start_time, "%Y-%m-%d %H:%M:%S").strftime("%A, %d de %B, a las %H:%M") }}:
  94. {{ states.calendar.calendar.school_holidays.attributes.message }}
  95. friendly_name: "Next School Holiday"
  96.  
  97. # Cloud
  98. cloud:
  99.  
  100. automation: !include automations.yaml
  101. script: !include scripts.yaml
  102.  
  103. feedreader:
  104. urls:
  105. - http://www.metoffice.gov.uk/public/data/PWSCache/WarningsRSS/Region/dg
  106.  
  107. hive:
  108. username: !secret hive_username
  109. password: !secret hive_password
  110.  
  111. switch:
  112. - platform: tplink
  113. host: !secret tp_link_ip
  114.  
  115. alarm_control_panel:
  116. - platform: manual
  117. name: Home Alarm
  118. code: !secret home_alarm_code
  119. disarmed:
  120. trigger_time: 0
  121. armed_home:
  122. pending_time: 0
  123. delay_time: 0
  124. armed_away:
  125. pending_time: 60
  126. delay_time: 30
  127.  
  128. # iOS
  129. ios:
  130.  
  131. # Zones for Device Tracking
  132. zone:
  133. - name: Barry's Work
  134. latitude: !secret barry_work_lattitude
  135. longitude: !secret barry_work_longitude
  136. radius: 100
  137. icon: mdi:office-building
  138.  
  139. - name: Sharon's Work
  140. latitude: !secret sharon_work_lattitude
  141. longitude: !secret sharon_work_longitude
  142. Radius: 100
  143. icon: mdi:hospital-building
  144.  
  145. - name: Home
  146. latitude: home_zone_lattitude
  147. longitude: home_zone_longitude
  148. radius: 100
  149. icon: mdi:account-multiple
  150.  
  151. # Details for Google Calendar
  152. google:
  153. client_id: !secret google_client_id
  154. client_secret: !secret google_client_secret
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement