Encoder icon indicating copy to clipboard operation
Encoder copied to clipboard

Quadrature Encoder Library for Arduino

Results 55 Encoder issues
Sort by recently updated
recently updated
newest added

Added pin interrupt support for the Arduino Giga R1 (issue #92).

### Description This library is not working on Arduino UNO R4 Minima. Lots of errors like "...has no member named..." concerning pin bitmask and registers. ### Steps To Reproduce Problem...

@PaulStoffregen - @KurtE When trying to update the library for the new R4 boards (Minima and WiFi) ran into an issue where attaching the interrupt did not work. Thanks to...

Please use this form only to report code defects or bugs. For any question, even questions directly pertaining to this code, post your question on the forums related to the...

Used the example code and it works fine with the Arduino IDE but as soon as I take the exact code the PlatformIO my esp32 crashes and gives an error...

How do I use the internal pull-up resistors for the encoder while using interrupt pins?

Please add support for ATMEGA 168P interrupt pins, mapping is the same as ATMEGA 168. Here is the solution: ``` #elif defined(__AVR_ATmega328P__) || defined(__AVR_ATmega328PB__) ||defined(__AVR_ATmega168__) || defined(__AVR_ATmega8__)||defined(__AVR_ATmega168P__) ```

Hi Paul, I use your code without problems on an Arduino iot33 with rotary encoder but with a high resolution encoder I see the count is constant but this happens:...

### Description A method to determine step direction is missing and would be a great nice-to-have. ### Steps To Reproduce Problem No method to get step direction. ### Hardware &...