├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── check-arduino.yml │ └── compile-examples.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── BasicRotaryEncoder │ └── BasicRotaryEncoder.ino ├── ButtonPressDuration │ └── ButtonPressDuration.ino ├── LeftOrRight │ └── LeftOrRight.ino └── TwoRotaryEncoders │ └── TwoRotaryEncoders.ino ├── keywords.txt ├── library.json ├── library.properties └── src ├── ESP32RotaryEncoder.cpp └── ESP32RotaryEncoder.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-arduino.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/.github/workflows/check-arduino.yml -------------------------------------------------------------------------------- /.github/workflows/compile-examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/.github/workflows/compile-examples.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/README.md -------------------------------------------------------------------------------- /examples/BasicRotaryEncoder/BasicRotaryEncoder.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/examples/BasicRotaryEncoder/BasicRotaryEncoder.ino -------------------------------------------------------------------------------- /examples/ButtonPressDuration/ButtonPressDuration.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/examples/ButtonPressDuration/ButtonPressDuration.ino -------------------------------------------------------------------------------- /examples/LeftOrRight/LeftOrRight.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/examples/LeftOrRight/LeftOrRight.ino -------------------------------------------------------------------------------- /examples/TwoRotaryEncoders/TwoRotaryEncoders.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/examples/TwoRotaryEncoders/TwoRotaryEncoders.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/library.properties -------------------------------------------------------------------------------- /src/ESP32RotaryEncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/src/ESP32RotaryEncoder.cpp -------------------------------------------------------------------------------- /src/ESP32RotaryEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaffooClock/ESP32RotaryEncoder/HEAD/src/ESP32RotaryEncoder.h --------------------------------------------------------------------------------