Hello,
Thanks for the great project.
In the README there is an example using attachInterrupt without checking the pin with digitalPinToInterrupt.
Proposal:
Change
attachInterrupt(0, irqHandler, FALLING);
to
attachInterrupt(digitalPinToInterrupt(0), irqHandler, FALLING);