Has anyone figured this thing out yet? like this: int InPinNumber = 8; int OutPinNumber = 13; volatile long CurrentTime PreviousTime DebounceTime = LOW; volatile int LEDState = LOW;
void setup() { attachInterrupt(0,ISR,FALLING); pinMode(InPinNumber,INPUT); pinMode(OutPinNumber,OUTPUT); } What's going on? Like everyone else I am going a little nuts - Looking and looking but see nothing! Please help if you can and thanks!