API Changes:
- Users must call
servo.attach()
before reading signals. Interrupts no longer attach on class construction. attachInterrupt()
anddetachInterrupt()
class functions have been refactored toattach()
anddetach()
Bug Fixes:
- Fixed a runtime issue with platforms that do not set up their IRQ table until
main()
(e.g. Uno R4, ESP32) - Fixed a compilation issue with platforms that use macros for interrupt handling
- Fixed a compilation issue with platforms that do not define
NOT_AN_INTERRUPT
Thank you to @Risto-H for their help in debugging and testing for this release!