Temperature conversion from a 3 digit to 2 digit

Hello,

I have been using home assistant to monitor my home lab and a few other things. I am reading the temps from my pdu and it returns the temp as a 3 digit value. The value matches in developer tools.

This of course shows up as a ~470 F temp.

my sensor config. I tried a few things and it just caused the sensor to not show up anymore.

 - platform: snmp
    name: PDU temp
    host: 192.168.254.3
    baseoid: 1.3.6.1.4.1.1718.3.2.5.1.6.2.1
    accept_errors: true
    #unit_of_measurement: 'C'
    #value_template: '{{ value * 0.10 }}'
    unit_of_measurement: '°C'`

your help is appreciated.

try:

{{ (value | float) * 0.10 }}

Your sensor is almost certainly being returned as a string, you need to convert it before calculating with it.

That did it, thanks.