PN532 NFC shield of Adafruit based on PN532 of Seeed.

Fork of PN532 by Seeed

Revision:
3:4189a10038e6
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/NfcDriver.h	Thu Nov 21 04:30:49 2013 +0000
@@ -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 bool write(NdefMessage& message, uint8_t * uid, int uidLength) = 0;
+        // erase()
+        // format()
+}
\ No newline at end of file