buenzliai/main/main.ino

67 lines
1.3 KiB
Arduino
Raw Normal View History

2024-05-16 13:19:30 +00:00
#include <LiquidCrystal.h>
2024-05-15 12:19:07 +00:00
#include <PN532.h>
#include <SPI.h>
2024-05-15 08:40:32 +00:00
2024-05-16 13:19:30 +00:00
#include "station.h"
2024-05-17 13:04:36 +00:00
#include "statemachine.h"
#include "state.h"
2024-05-17 13:37:03 +00:00
#include "states.h"
2024-05-16 13:19:30 +00:00
2024-05-15 12:19:07 +00:00
#define PN532_CS 10
PN532 nfc(PN532_CS);
2024-05-16 13:19:30 +00:00
const int rs = 9, en = 8, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
2024-05-15 12:19:07 +00:00
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
2024-05-16 13:19:30 +00:00
Station stations[4] = { Station(1680767519, "Yellow"), Station(3346823711, "Green"), Station(3569318175, "Pink"), Station(2174777887, "Blue") };
2024-05-17 13:37:03 +00:00
StateMachine stateMachine(new Startup());
2024-05-17 13:04:36 +00:00
2024-05-15 12:19:07 +00:00
void setup(void) {
2024-05-16 13:19:30 +00:00
setupNFC();
lcd.begin(16, 2);
lcd.setCursor(0, 0);
lcd.print("Test");
}
void loop(void) {
lcd.clear();
checkStations();
delay(1000);
}
void setupNFC() {
2024-05-15 12:19:07 +00:00
nfc.begin();
uint32_t versiondata = nfc.getFirmwareVersion();
2024-05-16 13:19:30 +00:00
if (!versiondata) {
while (1)
; // halt
2024-05-15 12:19:07 +00:00
}
// configure board to read RFID tags and cards
nfc.SAMConfig();
2024-05-15 08:40:32 +00:00
}
2024-05-16 13:19:30 +00:00
void checkStations() {
Station* station = detectStation();
lcd.setCursor(0, 0);
2024-05-17 13:04:36 +00:00
if (station != 0) {
lcd.print("Station: " + station->getName());
}
2024-05-16 13:19:30 +00:00
}
Station* detectStation() {
2024-05-15 12:19:07 +00:00
uint32_t id;
id = nfc.readPassiveTargetID(PN532_MIFARE_ISO14443A);
2024-05-16 13:19:30 +00:00
Station* found = 0;
for (int i = 0; i < sizeof(stations); i++) {
Station* currentStation = &stations[i];
2024-05-17 13:04:36 +00:00
if (currentStation->check(id)) {
found = currentStation;
2024-05-15 12:19:07 +00:00
}
}
2024-05-16 13:19:30 +00:00
return found;
2024-05-15 08:40:32 +00:00
}