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
While most functions use the number of digits specified in DIGITS, clearDisplay writes 0x7f only to digits 0x00~0x03.
This creates artifacts when the number of digits is bigger than 4.
--> Replaced with:
void TM1637::clearDisplay(void) {
for (int i = 0; i < DIGITS; i++) {
display(i,0x7f);
}
}
The text was updated successfully, but these errors were encountered:
While most functions use the number of digits specified in DIGITS, clearDisplay writes 0x7f only to digits 0x00~0x03.
This creates artifacts when the number of digits is bigger than 4.
--> Replaced with:
void TM1637::clearDisplay(void) {
for (int i = 0; i < DIGITS; i++) {
display(i,0x7f);
}
}
The text was updated successfully, but these errors were encountered: