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
Actually is not possible to update a negative number even if in the Nextion editor numbers accept negative values. It's just enough to modify the function bool setValue(uint32_t number); with bool setValue(int32_t number); and use the function itoa instead utoa inside that.
The text was updated successfully, but these errors were encountered:
Actually is not possible to update a negative number even if in the Nextion editor numbers accept negative values. It's just enough to modify the function
bool setValue(uint32_t number);
withbool setValue(int32_t number);
and use the function itoa instead utoa inside that.The text was updated successfully, but these errors were encountered: