mirror of
https://github.com/sweidac/kidsbox.git
synced 2025-07-27 19:31:54 +02:00
16 lines
270 B
C++
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 |