// int data[11][7]={
// {1,0,0,1,1,1,1},//1
// {0,0,1,0,0,1,0},//2
// {1,0,0,1,1,1,1},//1
// {1,1,1,1,1,1,1},//
// {1,0,0,1,1,1,1},//1
// {0,0,0,0,0,0,1},//0
// {1,0,0,1,1,1,1},//1
// {0,0,0,1,1,1,1},//7
// {0,0,0,0,0,0,1}// 0
// };
// void setup()
// {
// for(int x=0; x<=6; x++)
// {
// pinMode(x, OUTPUT);
// }
// }
// void loop(){
// for (int y=0; y<=8; y++){
// for (int x=0;x<=6;x++)
// {
// digitalWrite(x,data[y][x]);
// }
// delay(1000);
// }
// }
int CommonAnode[]={0xC0,0xF9,0xA4,0xB0,0x99,0x92,0x82,0xF8,0x80,0x90};
void setup(){
DDRD=0xFF;
}
void loop(){
for (int j=0;j<10;j++)
{
PORTD=CommonAnode[j];
delay(2000);
}
}