unsigned char leddata[]={0x3F,0x06,0x5B,0x4F,0x66,0x6D,0x7D,0x07,0x7F,0x6F,0x00};
void setup() {
// put your setup code here, to run once:
// DDRD = 0xff;
PORTD = 0x00;
}
void loop() {
// put your main code here, to run repeatedly:
for(int i = 0;i<10;i++){
PORTD = leddata[i];
digitalWrite(13,HIGH);
delay(500);
digitalWrite(LED_BUILTIN,LOW);
delay(500);
}
}