Advertisement
Guest User

Untitled

a guest
Dec 6th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 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: xxx
  6. longitude: xxxx
  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.  
  14. # Customization file
  15. customize: !include customize.yaml
  16. customize_glob: !include customize_glob.yaml
  17. packages: !include_dir_named packages
  18.  
  19. #Track cellulare
  20. device_tracker:
  21. - platform: life360
  22. username: !secret life360_username
  23. password: !secret life360_password
  24.  
  25. #Definizione delle zone
  26. zone:
  27. - name: TstoreMi2
  28. latitude: !secret latitude_tstoremi2
  29. longitude: !secret longitude_tstoremi2
  30. radius: 50
  31. icon: mdi:store
  32.  
  33. - name: TstoreMi
  34. latitude: !secret latitude_tstoremi
  35. longitude: !secret longitude_tstoremi
  36. radius: 50
  37. icon: mdi:store
  38.  
  39. # Termometro Processore Raspberry
  40. - platform: command_line
  41. name: CPU Temperature
  42. friendly_name: 'CPU'
  43. command: "cat /sys/class/thermal/thermal_zone0/temp"
  44. unit_of_measurement: "°C"
  45. scan_interval: 120
  46. value_template: '{{ value | multiply(0.001) }}'
  47.  
  48. # Uptime Home Assistant
  49. - platform: uptime
  50. unit_of_measurement: hours
  51.  
  52. # Show links to resources in log and frontend
  53. introduction:
  54.  
  55. # Enables the frontend
  56. frontend:
  57. extra_html_url:
  58. - /local/custom_ui/state-card-hline.html
  59. - https://raw.githubusercontent.com/andrey-git/home-assistant-custom-ui/master/state-card-custom-ui.html
  60. - /local/custom_ui/state-card-iframe.html
  61. - /local/custom_ui/state-card-tiles.html
  62. - /local/custom_ui/state-card-custom-ui-dbg.html
  63. - /local/custom_ui/custom-weather-animated.html
  64.  
  65. extra_html_url_es5:
  66. - /local/custom_ui/state-card-hline_es5.html
  67. - https://raw.githubusercontent.com/andrey-git/home-assistant-custom-ui/master/state-card-custom-ui-es5.html
  68. - /local/custom_ui/state-card-tiles_es5.html
  69. - /local/custom_ui/state-card-custom-ui-dbg-es5
  70. - /local/custom_ui/custom-weather-animated.html
  71.  
  72. # Enables configuration UI
  73. config:
  74.  
  75. # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
  76. # http:
  77. # base_url: example.duckdns.org:8123
  78.  
  79. # Checks for available updates
  80. # Note: This component will send some information about your system to
  81. # the developers to assist with development of Home Assistant.
  82. # For more information, please see:
  83. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  84. updater:
  85. # Optional, allows Home Assistant developers to focus on popular components.
  86. # include_used_components: true
  87.  
  88. # Discover some devices automatically
  89. discovery:
  90.  
  91. # Allows you to issue voice commands from the frontend in enabled browsers
  92. conversation:
  93.  
  94. # Enables support for tracking state changes over time
  95. history:
  96.  
  97. # View all events in a logbook
  98. logbook:
  99.  
  100. # Enables a map showing the location of tracked devices
  101. map:
  102.  
  103. # Track the sun
  104. sun:
  105.  
  106. # Sensors
  107. sensor:
  108. # Weather prediction
  109. # - platform: yr
  110.  
  111. # Text to speech
  112. tts:
  113. - platform: google
  114.  
  115. # Cloud
  116. cloud:
  117.  
  118. group: !include groups.yaml
  119. automation: !include automations.yaml
  120. script: !include scripts.yaml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement