├── .gitattributes ├── .gitignore ├── Firmware ├── RGB_Rotary_Encoder │ └── RGB_Rotary_Encoder.ino └── RG_Rotary_Encoder │ └── RG_Rotary_Encoder.ino ├── Hardware ├── README.md ├── SparkFun_Rotary_Encoder-Illuminated.brd └── SparkFun_Rotary_Encoder-Illuminated.sch ├── LICENSE.md ├── Libraries └── PinChangeInt │ ├── Examples │ ├── ByteBuffer │ │ ├── ByteBuffer.cpp │ │ └── ByteBuffer.h │ ├── GetPSTR │ │ └── GetPSTR.h │ ├── PinChangeIntExample │ │ └── PinChangeIntExample.pde │ ├── PinChangeIntSpeedTest │ │ └── PinChangeIntSpeedTest.pde │ ├── PinChangeIntTest │ │ └── PinChangeIntTest.pde │ └── PinChangeIntTest2 │ │ └── PinChangeIntTest2.ino │ ├── PinChangeInt.h │ ├── RELEASE_NOTES │ ├── gpl.txt │ └── keywords.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/.gitignore -------------------------------------------------------------------------------- /Firmware/RGB_Rotary_Encoder/RGB_Rotary_Encoder.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Firmware/RGB_Rotary_Encoder/RGB_Rotary_Encoder.ino -------------------------------------------------------------------------------- /Firmware/RG_Rotary_Encoder/RG_Rotary_Encoder.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Firmware/RG_Rotary_Encoder/RG_Rotary_Encoder.ino -------------------------------------------------------------------------------- /Hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Hardware/README.md -------------------------------------------------------------------------------- /Hardware/SparkFun_Rotary_Encoder-Illuminated.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Hardware/SparkFun_Rotary_Encoder-Illuminated.brd -------------------------------------------------------------------------------- /Hardware/SparkFun_Rotary_Encoder-Illuminated.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Hardware/SparkFun_Rotary_Encoder-Illuminated.sch -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Libraries/PinChangeInt/Examples/ByteBuffer/ByteBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Libraries/PinChangeInt/Examples/ByteBuffer/ByteBuffer.cpp -------------------------------------------------------------------------------- /Libraries/PinChangeInt/Examples/ByteBuffer/ByteBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Libraries/PinChangeInt/Examples/ByteBuffer/ByteBuffer.h -------------------------------------------------------------------------------- /Libraries/PinChangeInt/Examples/GetPSTR/GetPSTR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Libraries/PinChangeInt/Examples/GetPSTR/GetPSTR.h -------------------------------------------------------------------------------- /Libraries/PinChangeInt/Examples/PinChangeIntExample/PinChangeIntExample.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Libraries/PinChangeInt/Examples/PinChangeIntExample/PinChangeIntExample.pde -------------------------------------------------------------------------------- /Libraries/PinChangeInt/Examples/PinChangeIntSpeedTest/PinChangeIntSpeedTest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Libraries/PinChangeInt/Examples/PinChangeIntSpeedTest/PinChangeIntSpeedTest.pde -------------------------------------------------------------------------------- /Libraries/PinChangeInt/Examples/PinChangeIntTest/PinChangeIntTest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Libraries/PinChangeInt/Examples/PinChangeIntTest/PinChangeIntTest.pde -------------------------------------------------------------------------------- /Libraries/PinChangeInt/Examples/PinChangeIntTest2/PinChangeIntTest2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Libraries/PinChangeInt/Examples/PinChangeIntTest2/PinChangeIntTest2.ino -------------------------------------------------------------------------------- /Libraries/PinChangeInt/PinChangeInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Libraries/PinChangeInt/PinChangeInt.h -------------------------------------------------------------------------------- /Libraries/PinChangeInt/RELEASE_NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Libraries/PinChangeInt/RELEASE_NOTES -------------------------------------------------------------------------------- /Libraries/PinChangeInt/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Libraries/PinChangeInt/gpl.txt -------------------------------------------------------------------------------- /Libraries/PinChangeInt/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/Libraries/PinChangeInt/keywords.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/Rotary_Encoder_Breakout-Illuminated/HEAD/README.md --------------------------------------------------------------------------------