int button[7] = {13, 12, 14, 27, 26, 25, 33};
void setup() {
for ( int i=0 ; i<10 ; i++)
{
pinMode(button[i], INPUT_PULLUP);
}
pinMode(32, INPUT_PULLUP);
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}