You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
332 B
14 lines
332 B
#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
|
|
|