├── LICENSE ├── Makefile ├── README.md ├── examples ├── Teensy3_SPI_shiftRegister_input │ ├── Makefile │ └── Teensy3_SPI_shiftRegister_input.ino └── speedtest │ ├── Makefile │ └── speedtest.ino ├── library.json ├── nbproject ├── configurations.xml └── project.xml ├── spi4teensy3.cpp └── spi4teensy3.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxxajk/spi4teensy3/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxxajk/spi4teensy3/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxxajk/spi4teensy3/HEAD/README.md -------------------------------------------------------------------------------- /examples/Teensy3_SPI_shiftRegister_input/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxxajk/spi4teensy3/HEAD/examples/Teensy3_SPI_shiftRegister_input/Makefile -------------------------------------------------------------------------------- /examples/Teensy3_SPI_shiftRegister_input/Teensy3_SPI_shiftRegister_input.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxxajk/spi4teensy3/HEAD/examples/Teensy3_SPI_shiftRegister_input/Teensy3_SPI_shiftRegister_input.ino -------------------------------------------------------------------------------- /examples/speedtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxxajk/spi4teensy3/HEAD/examples/speedtest/Makefile -------------------------------------------------------------------------------- /examples/speedtest/speedtest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxxajk/spi4teensy3/HEAD/examples/speedtest/speedtest.ino -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxxajk/spi4teensy3/HEAD/library.json -------------------------------------------------------------------------------- /nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxxajk/spi4teensy3/HEAD/nbproject/configurations.xml -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxxajk/spi4teensy3/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /spi4teensy3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxxajk/spi4teensy3/HEAD/spi4teensy3.cpp -------------------------------------------------------------------------------- /spi4teensy3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxxajk/spi4teensy3/HEAD/spi4teensy3.h --------------------------------------------------------------------------------