LEER TAG

Dependents:   NFC_HTM_READ EMULAR_TAGS Escribir_tag NFC_HTM_READ-WRITE

Revision:
0:b805b487fbef
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MifareUltralight.h	Fri Apr 24 18:17:09 2015 +0000
@@ -0,0 +1,26 @@
+#ifndef MifareUltralight_h
+#define MifareUltralight_h
+
+#include <PN532.h>
+#include <NfcTag.h>
+#include <Ndef.h>
+
+class MifareUltralight
+{
+    public:
+        MifareUltralight(PN532& nfcShield);
+        ~MifareUltralight();
+        NfcTag read(uint8_t *uid, unsigned int uidLength);
+    private:
+        PN532* nfc;
+        unsigned int tagCapacity;
+        unsigned int messageLength;
+        unsigned int bufferSize;
+        unsigned int ndefStartIndex;
+        bool isUnformatted();
+        void readCapabilityContainer();
+        void findNdefMessage();
+        void calculateBufferSize();
+};
+
+#endif