volatile int state = LOW; // state of the LED1
volatile int state2 = LOW; // state of the LED2
volatile int n = 1;
volatile int n2 = 1;
This just bugs me. Why would you number one variable and not the other?
volatile int state = LOW; // state of the LED1
volatile int state2 = LOW; // state of the LED2
volatile int n = 1;
volatile int n2 = 1;
This just bugs me. Why would you number one variable and not the other?