Page 4
Under the supervision of Seeed Technology Inc., this manual has been compiled and published which covered the latest product description and specification. The content of this manual is subject to change without notice.
1. Introduction Near Field Communication (NFC) is a set of short-range wireless technologies. It's behind daily applications such as access control system and mobile payment system. Grove NFC features a highly integrated transceiver module PN532 which handles contactless communication at 13.56MHz. You can read and write a 13.56MHz tag with this module or implement point to point data exchange with two NFCs.
2. Specification Working Voltage 3.3V Static Mode: 73mA Working Current: Write/Read Mode: 83mA Support host interface I2C, UART (default). Serve for contactless communication rate 13.56MHz. Support ISO14443 Type A and Type B protocols. Max operating distance for detecting NFC tags is 28mm depending on current antenna size. Support P2P communication.
3. Get Started 1. Download PN532 library and put 4 folders(PN532, PN532_SPI, PN532_I2C and PN532_HSU) into Arduino's libraries. 2. Download Don's NDEF library, put it into Arduino's library and rename it to NDEF. 3. Open Arduino IDE. If Arduino IDE is already opened, restart it. 4.
Page 8
void setup(void) { Serial.begin(115200); Serial.println("NDEF Reader"); nfc.begin(); void loop(void) { Serial.println("\nScan a NFC tag\n"); (nfc.tagPresent()) NfcTag tag = nfc.read(); tag.print(); delay(5000); Of course, you can communicate Grove - NFC with Seeeduino/Arduino UNO via UART interface, but you can't get any information on the monitor of Arduino IDE.
Need help?
Do you have a question about the Grove-NFC and is the answer not in the manual?
Questions and answers