Generic library for working with PN532-like chips

Fork of PN532 by Seeed

NfcDriver.h

Committer:
r4z0r7o3
Date:
2015-02-04
Revision:
11:5b8afec8bee6
Parent:
3:4189a10038e6

File content as of revision 11:5b8afec8bee6:

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