5
void
setup
(
void
)
{
Serial
.
begin
(
115200
);
Serial
.
println
(
"NDEF Reader"
);
nfc
.
begin
();
}
void
loop
(
void
)
{
Serial
.
println
(
"\nScan a NFC tag\n"
);
if
(
nfc
.
tagPresent
())
{
NfcTag tag
=
nfc
.
read
();
tag
.
();
}
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.