├── LICENSE ├── README.md ├── changes.txt ├── doc ├── Makefile ├── PICCMemoryLayout.md ├── fritzing │ ├── Arduino-Uno-r3-with-RFID-RC522.fzz │ ├── Arduino-Uno-r3-with-RFID-RC522.png │ ├── RFID-RC522 - Pin Layout.png │ ├── RFID-RC522-v2.fzpz │ ├── RFID-RC522-v2.png │ ├── RFID-RC522-v3.fzpz │ └── RFID-RC522-v3.png ├── make.bat ├── requirements.txt ├── rfidmifare.pdf └── src │ ├── Doxyfile │ ├── _static │ └── .gitkeep │ ├── conf.py │ └── index.rst ├── examples ├── CheckFirmware │ └── CheckFirmware.ino ├── CustomI2C │ └── CustomI2C.ino ├── CustomSPI │ └── CustomSPI.ino ├── DumpInfo │ └── DumpInfo.ino ├── Hack │ ├── ChangeUID │ │ └── ChangeUID.ino │ └── FixBrickedUID │ │ └── FixBrickedUID.ino └── ReadUidMultiReader │ └── ReadUidMultiReader.ino ├── keywords.txt ├── library.properties ├── package.json └── src ├── MFRC522Constants.h ├── MFRC522Debug.cpp ├── MFRC522Debug.h ├── MFRC522Driver.h ├── MFRC522DriverI2C.cpp ├── MFRC522DriverI2C.h ├── MFRC522DriverPin.h ├── MFRC522DriverPinSimple.h ├── MFRC522DriverSPI.cpp ├── MFRC522DriverSPI.h ├── MFRC522Hack.cpp ├── MFRC522Hack.h ├── MFRC522v2.cpp ├── MFRC522v2.h └── require_cpp11.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/README.md -------------------------------------------------------------------------------- /changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/changes.txt -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/PICCMemoryLayout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/PICCMemoryLayout.md -------------------------------------------------------------------------------- /doc/fritzing/Arduino-Uno-r3-with-RFID-RC522.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/fritzing/Arduino-Uno-r3-with-RFID-RC522.fzz -------------------------------------------------------------------------------- /doc/fritzing/Arduino-Uno-r3-with-RFID-RC522.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/fritzing/Arduino-Uno-r3-with-RFID-RC522.png -------------------------------------------------------------------------------- /doc/fritzing/RFID-RC522 - Pin Layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/fritzing/RFID-RC522 - Pin Layout.png -------------------------------------------------------------------------------- /doc/fritzing/RFID-RC522-v2.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/fritzing/RFID-RC522-v2.fzpz -------------------------------------------------------------------------------- /doc/fritzing/RFID-RC522-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/fritzing/RFID-RC522-v2.png -------------------------------------------------------------------------------- /doc/fritzing/RFID-RC522-v3.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/fritzing/RFID-RC522-v3.fzpz -------------------------------------------------------------------------------- /doc/fritzing/RFID-RC522-v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/fritzing/RFID-RC522-v3.png -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/rfidmifare.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/rfidmifare.pdf -------------------------------------------------------------------------------- /doc/src/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/src/Doxyfile -------------------------------------------------------------------------------- /doc/src/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/src/conf.py -------------------------------------------------------------------------------- /doc/src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/doc/src/index.rst -------------------------------------------------------------------------------- /examples/CheckFirmware/CheckFirmware.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/examples/CheckFirmware/CheckFirmware.ino -------------------------------------------------------------------------------- /examples/CustomI2C/CustomI2C.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/examples/CustomI2C/CustomI2C.ino -------------------------------------------------------------------------------- /examples/CustomSPI/CustomSPI.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/examples/CustomSPI/CustomSPI.ino -------------------------------------------------------------------------------- /examples/DumpInfo/DumpInfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/examples/DumpInfo/DumpInfo.ino -------------------------------------------------------------------------------- /examples/Hack/ChangeUID/ChangeUID.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/examples/Hack/ChangeUID/ChangeUID.ino -------------------------------------------------------------------------------- /examples/Hack/FixBrickedUID/FixBrickedUID.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/examples/Hack/FixBrickedUID/FixBrickedUID.ino -------------------------------------------------------------------------------- /examples/ReadUidMultiReader/ReadUidMultiReader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/examples/ReadUidMultiReader/ReadUidMultiReader.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/library.properties -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/package.json -------------------------------------------------------------------------------- /src/MFRC522Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522Constants.h -------------------------------------------------------------------------------- /src/MFRC522Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522Debug.cpp -------------------------------------------------------------------------------- /src/MFRC522Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522Debug.h -------------------------------------------------------------------------------- /src/MFRC522Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522Driver.h -------------------------------------------------------------------------------- /src/MFRC522DriverI2C.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522DriverI2C.cpp -------------------------------------------------------------------------------- /src/MFRC522DriverI2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522DriverI2C.h -------------------------------------------------------------------------------- /src/MFRC522DriverPin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522DriverPin.h -------------------------------------------------------------------------------- /src/MFRC522DriverPinSimple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522DriverPinSimple.h -------------------------------------------------------------------------------- /src/MFRC522DriverSPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522DriverSPI.cpp -------------------------------------------------------------------------------- /src/MFRC522DriverSPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522DriverSPI.h -------------------------------------------------------------------------------- /src/MFRC522Hack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522Hack.cpp -------------------------------------------------------------------------------- /src/MFRC522Hack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522Hack.h -------------------------------------------------------------------------------- /src/MFRC522v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522v2.cpp -------------------------------------------------------------------------------- /src/MFRC522v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/MFRC522v2.h -------------------------------------------------------------------------------- /src/require_cpp11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OSSLibraries/Arduino_MFRC522v2/HEAD/src/require_cpp11.h --------------------------------------------------------------------------------