void setup() {
// put your setup code here, to run once:
for(int i = 2; i <= 9; i++) pinMode(i , OUTPUT);
}
int pin[10][8] = {
{0 , 0 , 0 , 0 , 0 , 0 , 1 , 0},
{1 , 0 , 0 , 1 , 1 , 1 , 1 , 0},
{0 , 0 , 1 , 0 , 0 , 1 , 0 , 0},
{0 , 0 , 0 , 0 , 1 , 1 , 0 , 0},
{1 , 0 , 0 , 1 , 1 , 0 , 0 , 0},
{0 , 1 , 0 , 0 , 1 , 0 , 0 , 0},
{0 , 1 , 0 , 0 , 0 , 0 , 0 , 0},
{0 , 0 , 0 , 1 , 1 , 1 , 1 , 0},
{0 , 0 , 0 , 0 , 0 , 0 , 0 , 0},
{0 , 0 , 0 , 0 , 1 , 0 , 0 , 0},
};
void loop() {
// put your main code here, to run repeatedly:
for(int i = 0; i < 10; i++){
for(int j = 0; j < 8; j++){
digitalWrite(j+2, pin[i][j]);
}
delay(400);
}
}