Files
kidsbox/device/main/RFIDInterface.hpp
2021-12-26 14:05:02 +01:00

14 lines
187 B
C++

#ifndef _RFID_INTERFACE_HPP
#define _RFID_INTERFACE_HPP
#include <rc522.h>
class RFIDInterface {
rc522_start_args_t startConfig;
public:
RFIDInterface();
void start();
};
#endif