mirror of
https://github.com/bdrtr/FINGER_DETECT.git
synced 2025-11-09 03:02:47 +00:00
23 lines
229 B
C++
23 lines
229 B
C++
#pragma once
|
|
#ifndef USER_H
|
|
#define USER_H
|
|
|
|
#include <Arduino.h>
|
|
|
|
class User {
|
|
|
|
public:
|
|
|
|
User(String name);
|
|
void setID(uint8_t ID);
|
|
uint8_t getID();
|
|
|
|
private:
|
|
|
|
String name;
|
|
uint8_t ID;
|
|
|
|
|
|
};
|
|
|
|
#endif |