22 lines
344 B
C++
22 lines
344 B
C++
#ifndef NFCREADER_HPP_
|
|
#define NFCREADER_HPP_
|
|
|
|
#include <M5Stack.h>
|
|
#include "MFRC522_I2C.h"
|
|
#include <string>
|
|
|
|
class NfcReader {
|
|
public:
|
|
NfcReader(int i2c_adress);
|
|
~NfcReader() = default;
|
|
|
|
String ReadNfc();
|
|
|
|
protected:
|
|
private:
|
|
MFRC522 *mfrc522;
|
|
String uid;
|
|
};
|
|
|
|
#endif /* !NFCREADER_HPP_ */
|