dragondaud/myClock

little Issue in Line 199 / digit.cpp / Display wrong change at midnight at Digit5

Opened this issue · 1 comments

if (i < segWidth) drawPixel(segWidth + 1, segHeight + 1 - i, _color); // Draw C

change it to
if (i < segWidth) drawPixel(segWidth + 1, segHeight -i, _color); // Draw C

Display wrong change at midnight, Digit5 from "2" to "0" in Segment C. Is only show 5 pixels. The last 6th pixel in the right corner are lost.

The issue is shown only at midnight and only with military time (24h displaying)!