const int sevSegArray[] = {
0xC0,
0xF9,
0xA4,
0xB0,
0x99,
0x92,
0x82,
0xF8,
0x80,
0x90
};
const int arduinoPins[] = {4,0,1,2,3,50,51,52};
const int delayTime = 500;
const int totalPin = 8;
void setup() {
for(int x = 0; x < totalPin; x++) pinMode(arduinoPins[x], OUTPUT);
}
void loop() {
}