Hi all,
I recently bought 2 of these 7 digit display pieces they are called “Grove - 4-Digit Display” (If you search it in the Seeed shop you’ll find it)
And I’m really curious about how to get a zero to display on them. I have 10 buttons and one of the buttons need to make it so that a zero will be displayed on the display. All numbers are working except the zero because zero obviously means something similar to ‘off’.
This is code I currently use:
</s> if (buttonState3 == HIGH) {
Serial.println("I am pressed 3");
tm1637.displayNum(3);
}<e>
I I change
to
</s>tm1637.displayNum(3);<e>
the display shows nothing.
</s>tm1637.displayNum(0);<e>
Any help is welcome!
Thanks,