PN532 library with added ultralight write support

Fork of PN532 by Yihui Xiong

NfcDriver.h

Committer:
icefeet
Date:
2014-10-07
Revision:
5:51f820fbd18a
Parent:
3:4189a10038e6

File content as of revision 5:51f820fbd18a:

// eventually the NFC drivers should extend this class
class NfcDriver
{
    public:
        virtual NfcTag read(uint8_t * uid, int uidLength) = 0;
        virtual bool write(NdefMessage& message, uint8_t * uid, int uidLength) = 0;
        // erase()
        // format()
}