initial commit
This commit is contained in:
19
Ndef.h
Normal file
19
Ndef.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef Ndef_h
|
||||
#define Ndef_h
|
||||
|
||||
// To save memory and stop serial output comment out the next line
|
||||
#define NDEF_USE_SERIAL
|
||||
|
||||
/* NOTE: To use the Ndef library in your code, don't include Ndef.h
|
||||
See README.md for details on which files to include in your sketch.
|
||||
*/
|
||||
|
||||
#include <Arduino.h>
|
||||
|
||||
#ifdef NDEF_USE_SERIAL
|
||||
void PrintHex(const byte *data, const long numBytes);
|
||||
void PrintHexChar(const byte *data, const long numBytes);
|
||||
void DumpHex(const byte *data, const long numBytes, const int blockSize);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user