Difference between revisions of "MIFARE MFRC522 RFID with Explore M3"
(Created page with "category:Explore M3") |
|||
Line 1: | Line 1: | ||
[[category:Explore M3]] | [[category:Explore M3]] | ||
+ | MFRC5C522 is a combined reader and writer for RFID tags that comply with ISO/IEC 14443 like A/MIFARE and NTAG. The commonly available inexpensive boards have an SPI interface, we will make it talk with Explore M3 in this tutorial. | ||
+ | |||
+ | =Hookup= | ||
+ | The default SPI interface for Explore M3 is mapped to '''SPI1''' of the controller. It simply means whenever you're interfacing an SPI device you used use these pins and functions like '''''SPI.begin()''''' will use these pins. | ||
+ | |||
+ | =Code= | ||
+ | |||
+ | =Demo= | ||
+ | |||
+ | =Credits= |
Revision as of 19:54, 18 June 2016
MFRC5C522 is a combined reader and writer for RFID tags that comply with ISO/IEC 14443 like A/MIFARE and NTAG. The commonly available inexpensive boards have an SPI interface, we will make it talk with Explore M3 in this tutorial.
Hookup
The default SPI interface for Explore M3 is mapped to SPI1 of the controller. It simply means whenever you're interfacing an SPI device you used use these pins and functions like SPI.begin() will use these pins.