├── .gitignore ├── LICENSE ├── README.md ├── TeensyID.cpp ├── TeensyID.h ├── examples ├── ReadAll │ └── ReadAll.ino └── T4_ReadAll │ └── T4_ReadAll.ino ├── library.json └── library.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstaub/TeensyID/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstaub/TeensyID/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstaub/TeensyID/HEAD/README.md -------------------------------------------------------------------------------- /TeensyID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstaub/TeensyID/HEAD/TeensyID.cpp -------------------------------------------------------------------------------- /TeensyID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstaub/TeensyID/HEAD/TeensyID.h -------------------------------------------------------------------------------- /examples/ReadAll/ReadAll.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstaub/TeensyID/HEAD/examples/ReadAll/ReadAll.ino -------------------------------------------------------------------------------- /examples/T4_ReadAll/T4_ReadAll.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstaub/TeensyID/HEAD/examples/T4_ReadAll/T4_ReadAll.ino -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstaub/TeensyID/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sstaub/TeensyID/HEAD/library.properties --------------------------------------------------------------------------------