#ifndef NFCREADER_HPP_ #define NFCREADER_HPP_ #include #include "MFRC522_I2C.h" #include class NfcReader { public: NfcReader(int i2c_adress); ~NfcReader() = default; String ReadNfc(); protected: private: MFRC522 *mfrc522; String uid; }; #endif /* !NFCREADER_HPP_ */