miguelbalboa / rfid

Arduino RFID Library for MFRC522
The Unlicense
2.73k stars 1.42k forks source link

MFRC522

.. image:: https://img.shields.io/maintenance/no/2019.svg :target: development .. image:: https://github.com/miguelbalboa/rfid/workflows/PlatformIO%20CI/badge.svg :target: https://github.com/miguelbalboa/rfid/actions :alt: GitHub Actions .. image:: https://img.shields.io/badge/C%2B%2B-11-brightgreen.svg :target: compatible ide .. image:: https://img.shields.io/github/release/miguelbalboa/rfid.svg?colorB=green :target: https://github.com/miguelbalboa/rfid/releases :alt: Releases .. image:: https://img.shields.io/badge/ArduinoIDE-%3E%3D1.6.10-lightgrey.svg :target: compatible ide_

Arduino library for MFRC522 and other RFID RC522 based modules.

Read and write different types of Radio-Frequency IDentification (RFID) cards on your Arduino using a RC522 based reader connected via the Serial Peripheral Interface (SPI) interface.

For advanced and further development please use library RFID_MFRC522v2 <https://github.com/OSSLibraries/Arduino_MFRC522v2>_.

.. _development: Development

The development by owner miguelbalboa has ended.

Feature status: complete freeze; no function or API change.

Code status: partial freeze; just fixes/typos or documentation updates; no extensions for other boards; no new examples.

Maintenance status: sporadically.

Why no further development? This library has a long history and is used in many projects. These projects often do not document what version they use. Committing changes might break those old projects and lead to bad experiences (for beginners) and support requests. For these reasons the library is in freeze mode. You can still commit typo, documentation or bug fixes.

.. _before buy: Before buy

Please notice that there are many sellers (ebay, aliexpress, ..) who sell mfrc522 boards. The quality of these boards are extremely different. Some are soldered with wrong/low quality capacitors or fake/defect mfrc522.

Please consider buying several devices from different suppliers. So the chance of getting a working device is higher.

If you got a bad board and you can tell us how to detect those boards (silk, chip description, ..), please share your knowledge.

.. _what works and not: What works and not?

.. _compatible ide: Compatible IDE

This library works with Arduino IDE 1.6, older versions are not supported and will cause compiler errors. The built-in library manager is supported.

If you use your own compiler, you have to enable c++11-support.

.. _compatible boards: Compatible boards

!!!Only for advanced users!!!

This library is compatible with the Teensy and ESP8266 if you use the board plugin of the Arduino IDE. Not all examples are available for every board. You also have to change pins. See pin layout_.

Some user made some patches/suggestions/ports for other boards:

Note that the main target/support of library is still Arduino.

.. _support issue: Support/issue

  1. First checkout what works and not and troubleshooting .

  2. It seems to be a hardware issue or you need support to program your project? Please ask in the official Arduino forum_, where you would get a much faster answer than on Github.

  3. It seems to be a software issue? Open an issue on Github.

.. _code style: Code style

Please use fixed integers, see stdint.h_. Why? This library is compatible with different boards which use different architectures (16bit and 32bit.) Unfixed int variables have different sizes in different environments and may cause unpredictable behaviour.

.. _pin layout: Pin Layout

The following table shows the typical pin layout used:

+-----------+----------+-----------------------------------------------------------------------------------+ | | PCD | Arduino | | +----------+-------------+---------+---------+-----------------+-----------+---------+---------+ | | MFRC522 | Uno / 101 | Mega | Nano v3 |Leonardo / Micro | Pro Micro | Yun [4]| Due | +-----------+----------+-------------+---------+---------+-----------------+-----------+---------+---------+ | Signal | Pin | Pin | Pin | Pin | Pin | Pin | Pin | Pin | +===========+==========+=============+=========+=========+=================+===========+=========+=========+ | RST/Reset | RST | 9 [1] | 5 [1] | D9 | RESET / ICSP-5 | RST | Pin9 | 22 [1] | +-----------+----------+-------------+---------+---------+-----------------+-----------+---------+---------+ | SPI SS | SDA [3] | 10 [2] | 53 [2] | D10 | 10 | 10 | Pin10 | 23 [2] | +-----------+----------+-------------+---------+---------+-----------------+-----------+---------+---------+ | SPI MOSI | MOSI | 11 / ICSP-4 | 51 | D11 | ICSP-4 | 16 | ICSP4 | SPI-4 | +-----------+----------+-------------+---------+---------+-----------------+-----------+---------+---------+ | SPI MISO | MISO | 12 / ICSP-1 | 50 | D12 | ICSP-1 | 14 | ICSP1 | SPI-1 | +-----------+----------+-------------+---------+---------+-----------------+-----------+---------+---------+ | SPI SCK | SCK | 13 / ICSP-3 | 52 | D13 | ICSP-3 | 15 | ICSP3 | SPI-3 | +-----------+----------+-------------+---------+---------+-----------------+-----------+---------+---------+

+-----------+---------------+--------------------------+-------------+ | | ESP8266 | Teensy | 8F328P-U | | +---------------+--------+--------+--------+-------------+ | | Wemos D1 mini | 2.0 | ++ 2.0 | 3.1 | ALPHA | +-----------+---------------+--------+--------+--------+-------------+ | Signal | Pin | Pin | Pin | Pin | Pin [5] | +===========+===============+========+========+========+=============+ | RST/Reset | D3 | 7 | 4 | 9 | D9# [1] | +-----------+---------------+--------+--------+--------+-------------+ | SPI SS | D8 | 0 | 20 | 10 | D10# [2]_ | +-----------+---------------+--------+--------+--------+-------------+ | SPI MOSI | D7 | 2 | 22 | 11 | MOSI / D11# | +-----------+---------------+--------+--------+--------+-------------+ | SPI MISO | D6 | 3 | 23 | 12 | MISO / D12# | +-----------+---------------+--------+--------+--------+-------------+ | SPI SCK | D5 | 1 | 21 | 13 | SCK | +-----------+---------------+--------+--------+--------+-------------+

.. [1] Configurable, typically defined as RST_PIN in sketch/program. .. [2] Configurable, typically defined as SSPIN in sketch/program. .. [3] The SDA pin might be labeled SS on some/older MFRC522 boards. .. [4] Source: #111 <https://github.com/miguelbalboa/rfid/issues/111#issuecomment-420433658> . .. [5] Pin names from the back (empty) side of the board were used as more definitive.

Important: If your micro controller supports multiple SPI interfaces, the library only uses the default (first) SPI of the Arduino framework.

.. _hardware: Hardware

There are three hardware components involved:

  1. Micro Controller:
  1. Proximity Coupling Device (PCD):
  1. Proximity Integrated Circuit Card (PICC):

.. _protocol: Protocols

  1. The micro controller and the reader use SPI for communication.
  1. The reader and the tags communicate using a 13.56 MHz electromagnetic field.

.. _security: Security

.. _troubleshooting: Troubleshooting

.. _license: License

This is free and unencumbered software released into the public domain.

Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.

In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

For more information, please refer to https://unlicense.org/

.. _dependency: Dependency

History

The MFRC522 library was first created in Jan 2012 by Miguel Balboa (from http://circuitito.com) based on code by Dr. Leong (from http://B2CQSHOP.com) for "Arduino RFID module Kit 13.56 Mhz with Tags SPI W and R By COOQRobot".

It was translated into English and rewritten/refactored in the fall of 2013 by Søren Thing Andersen (from http://access.thing.dk).

It has been extended with functionality to alter sector 0 on Chinese UID changeable MIFARE card in Oct 2014 by Tom Clement (from http://tomclement.nl).

Maintained by miguelbalboa until 2016. Maintained by Rotzbua from 2016 until 2022.

.. _arduino: https://arduino.cc/ .. _ebay: https://www.ebay.com/ .. _iso/iec 14443a: https://en.wikipedia.org/wiki/ISO/IEC_14443 .. _iso/iec 14443-3\:2011 part 3: .. _nxp mfrc522: https://www.nxp.com/docs/en/data-sheet/MFRC522.pdf .. _broken: https://eprint.iacr.org/2008/166 .. _supported by hardware: https://web.archive.org/web/20151210045625/http://www.nxp.com/documents/leaflet/939775017564.pdf .. _Arduino forum: https://forum.arduino.cc .. _stdint.h: https://en.wikibooks.org/wiki/C_Programming/C_Reference/stdint.h .. _Mikro Elektronika: https://forum.mikroe.com/viewtopic.php?f=147&t=64203