Hi,
Yeah, saw that, but I'm using CHANGE so I thought it would work. Anyway, tried to change to this:
attachInterrupt(INT_PIN, intHandler, FALLING);
and it still doesn't work.
Note: Looking at the code for attachInterrupt(), one must specify a pin as the first parameter, not an interrupt-number as on Arduino Uno:
void attachInterrupt(uint32_t pin, void (*callback)(void), uint32_t mode)