Advertisement
Guest User

Untitled

a guest
May 3rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. homeassistant:
  2. # Name of the location where Home Assistant is running
  3. name: Stan's Home
  4. # Location required to calculate the time the sun rises and sets
  5. latitude: 42.6833
  6. longitude: 23.3167
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: 565
  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/Sofia
  13.  
  14. # Show links to resources in log and frontend
  15. introduction:
  16.  
  17. # Enables the frontend
  18. frontend:
  19.  
  20. http:
  21. # Uncomment this to add a password (recommended!)
  22. # api_password: PASSWORD
  23. # Uncomment this if you are using SSL or running in Docker etc
  24. # base_url: example.duckdns.org:8123
  25.  
  26. # Checks for available updates
  27. updater:
  28.  
  29. # Discover some devices automatically
  30. discovery:
  31.  
  32. # Allows you to issue voice commands from the frontend in enabled browsers
  33. conversation:
  34.  
  35. # Enables support for tracking state changes over time.
  36. history:
  37.  
  38. # View all events in a logbook
  39. logbook:
  40. #40
  41. # Track the sun
  42. sun:
  43.  
  44. # Weather Prediction
  45. sensor:
  46. platform: yr
  47.  
  48. # platform: wunderground
  49. # api_key: fee10bfec857474b
  50. # monitored_conditiones:
  51. # weather
  52. # temp_c
  53. # alerts
  54.  
  55. sensor forecast:
  56. platform: darksky
  57. api_key: aa07a0a517914cb2dd7ad2762224f71a
  58. monitored_conditions:
  59. - summary
  60. - temperature
  61. - wind_speed
  62. - apparent_temperature_max
  63. - apparent_temperature_min
  64. update_interval: '00:20:00'
  65.  
  66.  
  67. # Text to speech
  68. tts:
  69. platform: google
  70.  
  71. media_player:
  72. platform: webostv
  73. host: 192.168.1.116
  74. name: lg_tv
  75. mac: 3C:CD:93:ED:42:93
  76.  
  77. notify:
  78. platform: webostv
  79. host: 192.168.1.116
  80. name: lg_tv
  81.  
  82.  
  83. device_tracker:
  84. platform: ddwrt
  85. host: 192.168.1.1
  86. username: admin
  87. password: Raptor1234
  88.  
  89. ifttt:
  90. key: f34ch5Nn_tK2mknXP8gT0BtistuxvSoNUtvXiD1fSEG
  91.  
  92. #climate:
  93. # platform: daikin:
  94. # name: Daikin Hol
  95. # mac: 90B68697EE07
  96. # id: 00000cj1
  97. # ip: 192.168.1.108
  98. # ver: 2_6_0
  99.  
  100. #automation:
  101. # alias: Say Hi
  102. # trigger:
  103. # platform: state
  104. # entity_id: media_player.lg_tv
  105. # state: playing
  106. # action:
  107. # service: notify.lg_tv
  108. # data:
  109. # title: "Hi Stan and Irinchi"
  110. # message: "The weather today is going to be "
  111.  
  112. automation:
  113. alias: Say Hi
  114. trigger:
  115. # platform: state
  116. # entity_id: media_player.lg_tv
  117. # state: playing
  118. platform: time
  119. minutes: '/30'
  120. seconds: 00
  121. action:
  122. service: notify.lg_tv
  123. data:
  124. message: "Hi Stan and Irinchi, The weather today is {{ states.sensor.dark_sky_summary.state}}. Current Temperature is {{ states.sensor.dark_sky_temperature.state }}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement