Advertisement
Guest User

Untitled

a guest
Jun 14th, 2016
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 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: -25.327283
  6. longitude: -57.622349
  7. # C for Celsius, F for Fahrenheit
  8. temperature_unit: C
  9. # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  10. time_zone: America/Asuncion
  11.  
  12. http:
  13. api_password: ******
  14.  
  15. # Track the sun
  16. sun:
  17.  
  18. # Prediction of weather
  19. sensor:
  20. platform: yr
  21.  
  22. # Allows you to issue voice commands from the frontend
  23. conversation:
  24.  
  25. # Show links to resources in log and frontend
  26. #introduction:
  27.  
  28. # Enables support for tracking state changes over time.
  29. history:
  30.  
  31. # Discover some devices automatically
  32. discovery:
  33.  
  34. # Checks for available updates
  35. updater:
  36.  
  37. # View all events in a logbook
  38. logbook:
  39.  
  40. # Enables the frontend
  41. frontend:
  42.  
  43. notify:
  44. platform: pushbullet
  45. api_key: o.ROqM3OgiPS5QUZC0tH7aNsw6Y5UMFrNz
  46. name: mypushbullet
  47.  
  48. automation:
  49. - alias: Send message at given time
  50. trigger:
  51. platform: time
  52. hours: 16
  53. minutes: 49
  54. seconds: 00
  55. action:
  56. service: notify.pushbullet
  57. data:
  58. message: 'time for lunch'
  59.  
  60. # Example configuration.yaml entry
  61. switch:
  62. platform: rpi_gpio
  63. ports:
  64. 23: LED Puerta
  65. 24: Luz Techo
  66. 25: Ventilador techo
  67. 12: Aire
  68. invert_logic: true
  69.  
  70.  
  71.  
  72. # IP Webcam ###
  73. # camera:
  74. # platform: mjpeg
  75. # mjpeg_url: http://192.168.1.59:554/h264Preview_01_main
  76. # name: Camera Porton
  77. # username: admin
  78. # password: casacam1
  79.  
  80.  
  81. sensor:
  82. platform: dht
  83. sensor: DHT11
  84. pin: 26
  85. name: Temperature Humidity
  86. monitored_conditions:
  87. - temperature
  88. - humidity
  89.  
  90.  
  91. # Example configuration.yaml entry
  92. # sensor:
  93. # platform: template
  94. # sensors:
  95. # solar_angle:
  96. # value_template: '{{ states.sun.sun.attributes.elevation }}'
  97. # friendly_name: 'Sun angle'
  98. # unit_of_measurement: 'degrees'
  99. # sunrise:
  100. # value_template: '{{ states.sun.sun.attributes.next_rising }}'
  101.  
  102.  
  103. # Raspberry Pi B Resources Monitor (Working)
  104. # sensor 2:
  105. # platform: systemmonitor
  106. # resources:
  107. # - type: disk_use_percent
  108. # arg: /home
  109. # - type: memory_free
  110. # - type: processor_use
  111.  
  112. camera:
  113. platform: generic
  114. still_image_url: http://192.168.1.59/cgi-bin/snap.cgi?user=admin&password=casacam1
  115. name: Camara Porton Frente 1
  116.  
  117. # Example configuration.yaml entry
  118. camera 2:
  119. platform: rpi_camera
  120. name: Raspberry Pi Camera
  121. # image_width: 1920
  122. # image_height: 1080
  123. # image_quality: 100
  124. file_path: /tmp/image.jpg
  125.  
  126.  
  127. group:
  128. salita: switch.LED_Puerta,switch.Luz_Techo,switch.Ventilador_techo,switch.Aire
  129.  
  130. logger:
  131. default: debug
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement