Files
kidsbox/device/main/RFIDInterface.hpp
Simon Weidacher 93cced767f Temp.
2021-12-26 14:05:03 +01:00

18 lines
353 B
C++

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