Text is garbled
Thank you for helping.
There are 10 buttons.
I am changing the value of the text when I press the button.
10,20,30,40,50,60,70,80,90,100
There are 10 patterns of, but the text is as follows only in the case of 60 and 70.
? 0
Other than that, the numerical value is displayed normally.
The following code is written in the handler when the button is pressed.
dimmerValue = 60;
Unicode :: snprintf (textDimmerBuffer, TEXTCOUNTER_SIZE, "% d", dimmerValue);
textDimmer.invalidate ();
Why?
Thank you.