Semaf Electronics 5d2ebe24fc Merge pull request #1 from per1234/example-folder
Move example sketch to appropriately named folder
2021-03-30 16:05:11 +02:00
2021-03-25 12:36:56 +01:00
2018-06-24 19:33:46 +02:00

MFRC522 i2c

Code is compatible to Arduino and ESP8266 (NodeMCU)

Tested on https://electronics.semaf.at/MFRC522-i2c-Tiny-Breakout-Board MFRC522 i2c Breakout Board

Set the Pin for the RST and i2c address!

#define RST_PIN 6 // Arduino UNO
// #define RST_PIN 14 // D5 on NodeMCU

// 0x28 is i2c address of the NFC Reader. Check your address with i2cscanner if not match.
MFRC522 mfrc522(0x28, RST_PIN);   // Create MFRC522 instance.

Thanks to @arozcan for the MFRC522 i2c Library

Description
MFRC522 i2c for Arduino and ESP8266
Readme 104 KiB
Languages
C++ 100%