PN532 NFC library for Seeed Studio's NFC Shield

Fork of PN532 by Yihui Xiong

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Ndef.h Source File

Ndef.h

00001 #ifndef Ndef_h
00002 #define Ndef_h
00003 
00004 /* NOTE: To use the Ndef library in your code, don't include Ndef.h
00005    See README.md for details on which files to include in your sketch.
00006 */
00007 #include <stdint.h>
00008 
00009 void PrintHex(const uint8_t *data, const long numuint8_ts);
00010 void PrintHexChar(const uint8_t *data, const long numuint8_ts);
00011 void DumpHex(const uint8_t *data, const long numuint8_ts, const int blockSize);
00012 
00013 #endif