initial commit

This commit is contained in:
2021-10-02 11:40:46 +02:00
commit 4d119fdce3
34 changed files with 3410 additions and 0 deletions

9
NfcDriver.h Normal file
View File

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