LEER TAG

Dependents:   NFC_HTM_READ EMULAR_TAGS Escribir_tag NFC_HTM_READ-WRITE

NfcDriver.h

Committer:
mauroar211
Date:
2015-04-24
Revision:
1:a549ef8b142a
Parent:
0:b805b487fbef

File content as of revision 1:a549ef8b142a:

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