#include "Display.h"
#include<stdint.h>
void setup() {
// put your setup code here, to run once:
initialize();
}
void loop() {
// put your main code here, to run repeatedly:
while(1){
for(int i = 0;i<10;i++ ){
display(i);
delay(1000);
}
}
}