├── .gitattributes ├── .github └── workflows │ └── tg-send.yml ├── LICENSE ├── README.md ├── README_EN.md ├── examples ├── enc_pinChangeInt │ └── enc_pinChangeInt.ino ├── encoder_2_impulse │ └── encoder_2_impulse.ino ├── encoder_auto │ └── encoder_auto.ino ├── encoder_demo │ └── encoder_demo.ino ├── encoder_fast │ └── encoder_fast.ino ├── encoder_interrupt │ └── encoder_interrupt.ino ├── external_enc │ └── external_enc.ino ├── timer_isr │ └── timer_isr.ino ├── two_encoders │ └── two_encoders.ino └── value_change │ └── value_change.ino ├── keywords.txt ├── library.properties └── src ├── GyverEncoder.cpp └── GyverEncoder.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/README_EN.md -------------------------------------------------------------------------------- /examples/enc_pinChangeInt/enc_pinChangeInt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/examples/enc_pinChangeInt/enc_pinChangeInt.ino -------------------------------------------------------------------------------- /examples/encoder_2_impulse/encoder_2_impulse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/examples/encoder_2_impulse/encoder_2_impulse.ino -------------------------------------------------------------------------------- /examples/encoder_auto/encoder_auto.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/examples/encoder_auto/encoder_auto.ino -------------------------------------------------------------------------------- /examples/encoder_demo/encoder_demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/examples/encoder_demo/encoder_demo.ino -------------------------------------------------------------------------------- /examples/encoder_fast/encoder_fast.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/examples/encoder_fast/encoder_fast.ino -------------------------------------------------------------------------------- /examples/encoder_interrupt/encoder_interrupt.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/examples/encoder_interrupt/encoder_interrupt.ino -------------------------------------------------------------------------------- /examples/external_enc/external_enc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/examples/external_enc/external_enc.ino -------------------------------------------------------------------------------- /examples/timer_isr/timer_isr.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/examples/timer_isr/timer_isr.ino -------------------------------------------------------------------------------- /examples/two_encoders/two_encoders.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/examples/two_encoders/two_encoders.ino -------------------------------------------------------------------------------- /examples/value_change/value_change.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/examples/value_change/value_change.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/library.properties -------------------------------------------------------------------------------- /src/GyverEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/src/GyverEncoder.cpp -------------------------------------------------------------------------------- /src/GyverEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverEncoder/HEAD/src/GyverEncoder.h --------------------------------------------------------------------------------