#include "My7SegLib.h"
void setup() {
// put your setup code here, to run once:
for (int i=2; i<=8; i++) {
pinMode(i, OUTPUT);
}
}
void loop() {
// put your main code here, to run repeatedly:
for (int i=0; i<10; i++) {
display_digit(i);
delay(500);
}
}