12 lines
183 B
C
12 lines
183 B
C
|
#pragma once
|
||
|
#include <Arduino.h>
|
||
|
|
||
|
class Station {
|
||
|
private:
|
||
|
uint32_t nfcTagId;
|
||
|
String name;
|
||
|
public:
|
||
|
Station(uint32_t nfcTagId, String name);
|
||
|
bool check(uint32_t nfcTagId);
|
||
|
};
|