Files
RFID.MFRC522/src/MFRC522Debug.h
Rotzbua 0b258bfe0f refactor and split class
move hardware manipulation functions into new class
2017-05-22 12:25:18 +02:00

15 lines
332 B
C++

#include "MFRC522.h"
#ifndef MFRC522Debug_h
#define MFRC522Debug_h
class MFRC522Debug {
private:
public:
// Get human readable code and type
static const __FlashStringHelper *PICC_GetTypeName(MFRC522::PICC_Type type);
static const __FlashStringHelper *GetStatusCodeName(MFRC522::StatusCode code);
};
#endif // MFRC522Debug_h