#include <fDigitsSegtPin.h>
fDigitsSegtPin Display(2,3,4,5,6,7,8,9,10,11,12,13);
long W = 0;
void setup() {
Display.begin();
Display.doPrint_lastDot = 1;
Display.doPrint_firstZero = 1;
Display.doReport_overRange = 0;
}
void loop() {
for (int count = 0; count < 500; count++) {
Display.print(W);
}
W = W + 1;
if (W == 10) {
W = 0;
}
}