NFC Module for Arduino tag events

Hey all,
I'm fairly new to Arduino programming, so bear with me.
So I recently bought NFC Module for Arduino (SKU:DFR0231) from the DFRobot store and I got it connected to an Arduino Uno board and as far a I can tell, the NFC module seems to work. However, I saw on the module's wiki page ( http://www.dfrobot.com/wiki/index.php/N ... U:DFR0231) ) that the module provides an event for your processor when detects the NFC tags, stickers, key fobs, or cards via high speed serial uart. Now I've been searching the wiki and forums about some documentation about this event, but I couldn't find it.
Is there some online documentation about this event? I would very much like to use it. And if not, can someone please tell me how to use that event?
Many thanks
[quote="krienie"]
Is there some online documentation about this event? I would very much like to use it. And if not, can someone please tell me how to use that event?
there should be documented information regarding the event for this chip.
In the wiki code on line 18, seems to have the relevant code.
Did you try the example code?

There is a sketch which could display the NFC data in LCD module.
But it only will display 16 date.(It has 25 date in all, some is useless)

The default baudrate of NFC module is 115200.
And the the maximum baudrate that works with SoftwareSerial is 38400.
So it can't receive NFC data form the SoftwareSerial port.
It need a hardware serial port. For example Mega and Leonardo
I have tried NFC module via Arduino UNO. It needs connect RX/TX(NFC) to TX0/RX0(UNO) directly.
Set the baudrate to 115200.
I could receive the data in serial monitor. But it has a lot of messy code.

I wounder if the issue could be caused by the software serial limitations with baudrates.

I also purchased this module with some NFC stickers few days ago. I connected the board to a Leonardo, uploaded the example sketch on the wiki but no sign of life here.
Does anyone able to make this thing work ? If yes please can you tell where I am missing sth ?
Thx

I have downloaded the zip containing the example code and added the following two lines in the beginnning of the file since the UNO only has one serial
#include <SoftwareSerial.h> SoftwareSerial Serial1(10,11);
00 80 00 00 00 80 02 FF 75 45 11 F8 FF FF FF 00 80 00 00 00 80 06 FD 75 20 53 90 E8 08 07 FC FF FF FF
00 00 FF 00 FF 00 00 00 FF 02 FE D5 15 16 00 00 00 FF 00 FF 00 00 00 FF 06 FA D5 03 32 01 06 07 E8 00
Any ideas what is wrong?



NFC is a set of short-range wireless technologies, typically requiring a distance of 10cm or less.
You want to detect your card, or small things? You know its effective distance is a little short.
Or you want to do something else?
