Add temp sensor to System monitor integration

since many people add the command_line sensor

# CPU Temperature
  - platform: command_line
    name: Cpu temperature
    command: >
      cat /sys/class/thermal/thermal_zone0/temp
    unit_of_measurement: °C
    value_template: >
      {{value|multiply(0.001)|round(1)}}

to their setup, please consider adding this in core to the System monitor

adding to the types would simply be done by using:

- type: temperature

Isn’t this already part of the core component?

sensor:
  - platform: systemmonitor
    resources:
      - type: processor_temperature
1 Like

Yes…. I see that now for the first time… really sorry. How could I have missed that.