You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today the temps dropped below zero and I noticed that one temp started showing wrong values. Since it was OK for T >0 I checked the code where it was declared as uint16
Today the temps dropped below zero and I noticed that one temp started showing wrong values. Since it was OK for T >0 I checked the code where it was declared as uint16
message.cpp, line 186:
LAZYSWITCH(220, "pre_heater_temp_before", "%.1f", uint16/10.0) // C°
LAZYSWITCH(221, "post_heater_temp_after", "%.1f", uint16/10.0) // C°
Changing it to int16 should solve the problem (I have to wait for tonight to confirm..)
LAZYSWITCH(220, "pre_heater_temp_before", "%.1f", int16/10.0) // C°
LAZYSWITCH(221, "post_heater_temp_after", "%.1f", int16/10.0) // C°
The text was updated successfully, but these errors were encountered: