to colorize a colorful pixel with a simple touch using nfc technology

Dependencies:   Chainable_RGB_LED mbed

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 }