invalid callback identifier fix
This commit is contained in:
parent
393c13eeb4
commit
db89f7229d
@ -20,7 +20,7 @@ void setup()
|
|||||||
|
|
||||||
//INIT PINS
|
//INIT PINS
|
||||||
pinMode(INPUT_PIN, INPUT);
|
pinMode(INPUT_PIN, INPUT);
|
||||||
attachInterrupt(digitalPinToInterrupt(INPUT_PIN), cb, FALLING);
|
attachInterrupt(digitalPinToInterrupt(INPUT_PIN), increment_counts, FALLING);
|
||||||
}
|
}
|
||||||
|
|
||||||
int last_counts = -1;
|
int last_counts = -1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user