Adds rfid example code.

This commit is contained in:
Simon Weidacher
2021-12-26 14:00:30 +01:00
parent 68f1427155
commit 1788c9e5aa
6 changed files with 78 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
#ifndef _RFID_INTERFACE_HPP
#define _RFID_INTERFACE_HPP
#include <rc522.h>
class RFIDInterface {
rc522_start_args_t startConfig;
public:
RFIDInterface();
void start();
};
#endif