This commit is contained in:
Simon Weidacher
2021-12-26 14:00:30 +01:00
parent 13bd2051ad
commit 93cced767f
2 changed files with 12 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
#define _RFID_INTERFACE_HPP
#include <rc522.h>
#include <functional>
#include "WebInterface.hpp"
class RFIDInterface {
@@ -11,6 +12,7 @@ class RFIDInterface {
RFIDInterface();
void start();
void registerWebResources(WebInterface* interface);
void registerTagChangeCallback(std::function<void(char*)>);
};
#endif