NFC tag reader with Arduino

The idea is build a simple prototype to read NFC tags and validate them against a remote server
ORIGINAL POST
By Gonzalo Ayuso
components
Hardware Components
Arduino Uno
X 1
Arduino ethernet shield
X 1
MFRC522
X 1
details

2022-05-23_162249.png

The idea is build a simple prototype to read NFC tags and validate them against a remote server (for example a node tcp server). Depending on the tag we’ll trigger one digital output or another. In the example we’ll connect leds to those outputs, but in the real life we can open door or something similar.

We’ll use a MFRC522 module. It’s a cheap Mifare RFID/NFC tag reader and writer.

MFRC522 Connection:

  • sda: 10 (*) -> 8
  • sck: 13
  • Mosi: 11
  • Miso: 12
  • Rq: –
  • Gnd: Gnd
  • Rst: 9
  • 3.3V: 3.3V

 

Original Link: https://gonzalo123.github.io/2017/06/12/nfc-tag-reader-with-arduino/

2022-05-23_162249.png

The idea is build a simple prototype to read NFC tags and validate them against a remote server (for example a node tcp server). Depending on the tag we’ll trigger one digital output or another. In the example we’ll connect leds to those outputs, but in the real life we can open door or something similar.

We’ll use a MFRC522 module. It’s a cheap Mifare RFID/NFC tag reader and writer.

MFRC522 Connection:

  • sda: 10 (*) -> 8
  • sck: 13
  • Mosi: 11
  • Miso: 12
  • Rq: –
  • Gnd: Gnd
  • Rst: 9
  • 3.3V: 3.3V

 

Original Link: https://gonzalo123.github.io/2017/06/12/nfc-tag-reader-with-arduino/

documents
Code
Github repository

COMMENTS

Please Login to comment
  Subscribe  
Notify of