buenzliai/main/station.cpp
2024-05-16 15:19:30 +02:00

12 lines
218 B
C++

#include "station.h"
Station::Station(uint32_t nfcTagId, String name) {
{
this->nfcTagId = nfcTagId;
this->name = name;
}
}
bool Station::check(uint32_t nfcTagId) {
return nfcTagId == this->nfcTagId;
}