PN532 NFC library for Seeed Studio's NFC Shield

Fork of PN532 by Yihui Xiong

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers NfcDriver.h Source File

NfcDriver.h

00001 // eventually the NFC drivers should extend this class
00002 class NfcDriver
00003 {
00004     public:
00005         virtual NfcTag read(uint8_t * uid, int uidLength) = 0;
00006         virtual bool write(NdefMessage& message, uint8_t * uid, int uidLength) = 0;
00007         // erase()
00008         // format()
00009 }