added arduino nfcReader files (#42)

This commit is contained in:
Valentin Heiserer
2024-04-18 00:49:50 +02:00
committed by GitHub
parent 76cb0eaf1a
commit 6259d0bef3
68 changed files with 8463 additions and 0 deletions

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