mirror of
https://github.com/bdrtr/FINGER_DETECT.git
synced 2025-11-08 18:52:47 +00:00
22 lines
271 B
C++
22 lines
271 B
C++
#ifndef FPROCESS_H
|
|
#define FPROCESS_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
class fProcess{
|
|
|
|
|
|
public:
|
|
|
|
fProcess();
|
|
void Initialize();
|
|
void enRoll(uint16_t id);
|
|
uint16_t logIn();
|
|
void showUserList();
|
|
void delDB();
|
|
private:
|
|
String name;
|
|
|
|
};
|
|
|
|
#endif |