Sonoff Zigbee Temp and Hum sensor on Alexxit

Hello, I’m new to the HA community, about a month, I know I miss a lot, see a lot of concepts to integrate all my stuff,
In addition my first language is French lol,
I mainly have Sonoff brand products all with Alexxit hacs integration

But zigbee temperature and humidity censor gives me a number without comma and my th16 sound ok?
Why and how to fix the problem. Thanks in advance for your help and surely not my last question lol, I really love this system

no answer for me ?

If 28,58 is the correct temperature, you could create a template sensor.

yes is de correct temp , I have try in node-red with the template function, but when I change a value of one of but zigbee thing, all its affect (they lose their name and had to have numbers?). I also try in .yaml but nothing.
Several hours of research and reading and always without success. But I am really a beginner, thank you for your response to my first post. I will continue my investigation. If you have any suggestions on how to easily configure a template, they are welcome.

thanks again

I don’t know how your sensor is called. I just use old_ temperature for now

  - platform: template
    sensors:
      new_temperature:
        friendly_name: "New Temperature"
        unit_of_measurement: '°C'
        value_template: "{{ states('sensor.old_temperature') | float / 100 }}"

That creates a new sensor called “New Temperature”. If sensor.old_temperature is 2858, then sensor.new_temperature will be 28,58

thank you very much, it works !!!

Fixed in latest version