Advertisement
overvolt

Domotica 3x03

Jul 26th, 2018
3,741
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. recorder:
  2. purge_keep_days: 3
  3. include:
  4. domains:
  5. - automation
  6. - input_boolean
  7. - input_number
  8. - input_datetime
  9. - input_select
  10. - binary_sensor
  11. - sensor
  12. - history_graph
  13.  
  14. history_graph:
  15. gr1:
  16. name: Raspberry's Temperature
  17. entities:
  18. - sensor.cpu_temp
  19. hours_to_show: 48
  20. refresh: 10
  21.  
  22. sensor:
  23. - platform: command_line
  24. name: CPU Temp
  25. command: "cat /sys/class/thermal/thermal_zone0/temp"
  26. unit_of_measurement: "°C"
  27. value_template: '{{ value | multiply(0.001) | round(1) }}'
  28. - platform: systemmonitor
  29. resources:
  30. - type: disk_free
  31. arg: /
  32. - type: memory_free
  33. - type: processor_use
  34. - type: last_boot
  35. - type: since_last_boot
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement