├── .clang-format ├── .github └── workflows │ └── arduino-checks.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples ├── AcceleratedRotator │ └── AcceleratedRotator.ino ├── InterruptRotator │ └── InterruptRotator.ino ├── LimitedRotator │ └── LimitedRotator.ino ├── SimplePollRotator │ └── SimplePollRotator.ino └── SimplePollRotatorLCD │ └── SimplePollRotatorLCD.ino ├── library.properties └── src ├── RotaryEncoder.cpp └── RotaryEncoder.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/RotaryEncoder/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/arduino-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/RotaryEncoder/HEAD/.github/workflows/arduino-checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/* 2 | _* 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/RotaryEncoder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/RotaryEncoder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/RotaryEncoder/HEAD/README.md -------------------------------------------------------------------------------- /examples/AcceleratedRotator/AcceleratedRotator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/RotaryEncoder/HEAD/examples/AcceleratedRotator/AcceleratedRotator.ino -------------------------------------------------------------------------------- /examples/InterruptRotator/InterruptRotator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/RotaryEncoder/HEAD/examples/InterruptRotator/InterruptRotator.ino -------------------------------------------------------------------------------- /examples/LimitedRotator/LimitedRotator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/RotaryEncoder/HEAD/examples/LimitedRotator/LimitedRotator.ino -------------------------------------------------------------------------------- /examples/SimplePollRotator/SimplePollRotator.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/RotaryEncoder/HEAD/examples/SimplePollRotator/SimplePollRotator.ino -------------------------------------------------------------------------------- /examples/SimplePollRotatorLCD/SimplePollRotatorLCD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/RotaryEncoder/HEAD/examples/SimplePollRotatorLCD/SimplePollRotatorLCD.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/RotaryEncoder/HEAD/library.properties -------------------------------------------------------------------------------- /src/RotaryEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/RotaryEncoder/HEAD/src/RotaryEncoder.cpp -------------------------------------------------------------------------------- /src/RotaryEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/RotaryEncoder/HEAD/src/RotaryEncoder.h --------------------------------------------------------------------------------