atxbyea / samsungrac

Home Assistant Climate Device for controlling (not only) Samsung AC
60 stars 18 forks source link

current_temperature (AC_FUN_TEMPNOW) is incorrect #9

Open rgogada opened 3 years ago

rgogada commented 3 years ago

the current temperature shows 73c in HA but on the panel it is 16c. there was a suggestion to reduce 55 from AC_FUN_TEMPNOW, but that is not accurate either. any idea why it shows differently? Thanks in advance.

atxbyea commented 3 years ago

I have no issues displaying the correct temperature here, I'll try to look at it and see if I see something obvious. What model do you have, and what release do you have installed @rgogada ?

rgogada commented 3 years ago

I have no issues displaying the correct temperature here, I'll try to look at it and see if I see something obvious. What model do you have, and what release do you have installed @rgogada ?

I am using M02 (samsung_2878).

atxbyea commented 3 years ago

Same as me, I've changed my temp up and down, and I cannot replicate your issue, it almost looks like a difference between fahrenheit and celsius... but it isnt...

menzy81 commented 3 years ago

I too was having the same issue as rgogada & I am using the same M02 as well. I fixed it by changing the following line in climate.py. I found this fix in the original thread.

Original: @property def current_temperature(self): return self.rac.get_property(ATTR_CURRENT_TEMPERATURE) Fix: @property def current_temperature(self): return (self.rac.get_property(ATTR_CURRENT_TEMPERATURE)-55) #-55 for correct offset

comm9200 commented 2 years ago

I'm having the same problem - using V4.0 with MIMH02. It's showing 79 when the actual temp it 22.5. Has there been an update for this since v4.0?