-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Indoor and outdoor temperature #182
Comments
Thanks for the information. What's your reference for this change? |
I updated earlier post. |
I had to chanche again. Following what is shown in NetHome Plus for Midea it shoud be sothething like: So now the code looks like this:
It looks they take negative 0.5 degree and later int od this. Before this change temperature was jumping fron 0 to -1 and never was -0.5 degree. Hope it's ending but I will comment this after some time as I will see what will happend. |
Following what is shown in NetHome Plus for Midea it shoud be sothething like:
They count (d - 50) / 2 as double but put only integer of this.
So this is exactly what should be in decode_temp:
Next we have to add part after dot but must depend on temperature value negative or positive:
You can simplify if needed :)
After those changes we can see exactly what recomended NetHome Plus for Midea shows.
Perhaps they make a mistake taking only int part of temperature but to who we can believe?
The text was updated successfully, but these errors were encountered: