├── LICENSE ├── README.md ├── examples ├── multiple_encoders │ └── multiple_encoders.ino └── simple_encoder │ └── simple_encoder.ino ├── library.properties └── src ├── pio_encoder.cpp ├── pio_encoder.h └── quadrature.pio.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbr1/rp2040-encoder-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbr1/rp2040-encoder-library/HEAD/README.md -------------------------------------------------------------------------------- /examples/multiple_encoders/multiple_encoders.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbr1/rp2040-encoder-library/HEAD/examples/multiple_encoders/multiple_encoders.ino -------------------------------------------------------------------------------- /examples/simple_encoder/simple_encoder.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbr1/rp2040-encoder-library/HEAD/examples/simple_encoder/simple_encoder.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbr1/rp2040-encoder-library/HEAD/library.properties -------------------------------------------------------------------------------- /src/pio_encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbr1/rp2040-encoder-library/HEAD/src/pio_encoder.cpp -------------------------------------------------------------------------------- /src/pio_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbr1/rp2040-encoder-library/HEAD/src/pio_encoder.h -------------------------------------------------------------------------------- /src/quadrature.pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gbr1/rp2040-encoder-library/HEAD/src/quadrature.pio.h --------------------------------------------------------------------------------