Cleanup WebInterface and make RFIDInterface reachable.

This commit is contained in:
Simon Weidacher
2021-12-26 14:00:30 +01:00
parent 1788c9e5aa
commit ad2499506a
5 changed files with 146 additions and 211 deletions

View File

@@ -2,6 +2,7 @@
#define _RFID_INTERFACE_HPP
#include <rc522.h>
#include "WebInterface.hpp"
class RFIDInterface {
rc522_start_args_t startConfig;
@@ -9,6 +10,7 @@ class RFIDInterface {
public:
RFIDInterface();
void start();
void registerWebResources(WebInterface* interface);
};
#endif