PN532 customized

Fork of PN532 by Components

NfcDriver.h

Committer:
stanvn
Date:
2016-02-11
Revision:
10:2fcf2448d199
Parent:
3:4189a10038e6

File content as of revision 10:2fcf2448d199:

// 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()
}