├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── examples ├── larson_85 │ └── larson_85.ino ├── spi_84 │ └── spi_84.ino └── spi_85 │ └── spi_85.ino ├── keywords.txt ├── library.properties └── src ├── tinySPI.cpp └── tinySPI.h /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChristensen/tinySPI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChristensen/tinySPI/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChristensen/tinySPI/HEAD/README.md -------------------------------------------------------------------------------- /examples/larson_85/larson_85.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChristensen/tinySPI/HEAD/examples/larson_85/larson_85.ino -------------------------------------------------------------------------------- /examples/spi_84/spi_84.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChristensen/tinySPI/HEAD/examples/spi_84/spi_84.ino -------------------------------------------------------------------------------- /examples/spi_85/spi_85.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChristensen/tinySPI/HEAD/examples/spi_85/spi_85.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChristensen/tinySPI/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChristensen/tinySPI/HEAD/library.properties -------------------------------------------------------------------------------- /src/tinySPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChristensen/tinySPI/HEAD/src/tinySPI.cpp -------------------------------------------------------------------------------- /src/tinySPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JChristensen/tinySPI/HEAD/src/tinySPI.h --------------------------------------------------------------------------------