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

16 lines
270 B
C++

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