Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. homeassistant:
  2. # Name of the location where Home Assistant is running
  3. name: Stanza Gaming
  4. # Location required to calculate the time the sun rises and sets
  5. latitude: 0
  6. longitude: 0
  7. # Impacts weather/sunrise data (altitude above sea level in meters)
  8. elevation: 0
  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: UTC
  13. # Customization file
  14. customize: !include customize.yaml
  15.  
  16.  
  17.  
  18.  
  19. # FONTED
  20.  
  21.  
  22.  
  23. # CONFIGURAZIONE MQTT PER I VARI SONOFF /////////////@@@@@@/////////
  24.  
  25. mqtt:
  26. broker: 192.168.0.101
  27. port: 1883
  28. username: slicedstream
  29. password: giacomino22
  30.  
  31. light:
  32. - platform: mqtt
  33. name: "lampadario"
  34. topic: "tele/sonoff/LWT"
  35. command_topic: "cmnd/lampada/power"
  36. state_topic: "stat/lampada/POWER"
  37. payload_available: "Online"
  38. qos: 1
  39. payload_on: "ON"
  40. payload_off: "OFF"
  41. payload_not_avaliable: "Offline"
  42. optimistic: false
  43. retain: true
  44.  
  45.  
  46.  
  47.  
  48. # Enables the frontend
  49. frontend:
  50.  
  51.  
  52.  
  53. #CONFIGURAZIONE DOMINIO PER ACCESSO REMOTO /////////////@@@@@@//////////////
  54.  
  55.  
  56. http:
  57. api_password: giacomino22
  58. base_url: https://giacomino97.duckdns.org
  59. ssl_certificate: /ssl/fullchain.pem
  60. ssl_key: /ssl/privkey.pem
  61.  
  62.  
  63. # END ////////////
  64.  
  65. updater:
  66. # Optional, allows Home Assistant developers to focus on popular components.
  67. # include_used_components: true
  68.  
  69. # Discover some devices automatically
  70. discovery:
  71.  
  72. # Allows you to issue voice commands from the frontend in enabled browsers
  73. conversation:
  74.  
  75. # Enables support for tracking state changes over time
  76. history:
  77.  
  78. # View all events in a logbook
  79. logbook:
  80.  
  81. # Enables a map showing the location of tracked devices
  82. map:
  83.  
  84. # Track the sun
  85. sun:
  86.  
  87. # Sensors
  88.  
  89.  
  90.  
  91. history_graph:
  92. gr1:
  93. name: Raspberry's Temperature
  94. entities:
  95. - sensor.cpu_temp
  96. hours_to_show: 48
  97. refresh: 10
  98.  
  99. sensor:
  100. - platform: command_line
  101. name: CPU Temp
  102. command: "cat /sys/class/thermal/thermal_zone0/temp"
  103. unit_of_measurement: "°C"
  104. value_template: '{{ value | multiply(0.001) | round(1) }}'
  105.  
  106.  
  107. # Weather prediction
  108.  
  109.  
  110. # Text to speech
  111. tts:
  112. - platform: google
  113.  
  114. # Cloud
  115. cloud:
  116.  
  117. group: !include groups.yaml
  118. automation: !include automations.yaml
  119. script: !include scripts.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement