Smart Life (tuya) show wrong temperature

Than you need to create a custom component to modify the code… You have to copy ALL original tuya components into “custom_components/tuya” (you need to create this “tuya” directory), than you modify the climate.py in this newly created directory to change the corresponding temperature (example given by Fraschi earlier in this post if you want to divide the current temperature by 2):

From:

@property
def current_temperature(self):
“”“Return the current temperature.”""
return self.tuya.current_temperature()

to:

@property
def current_temperature(self):
temp = float(self.tuya.current_temperature())/2
return temp

I hope this is helping…