//rele
#define RELE_1_PIN 2
//RFID
#define RFID_BTN 33
//BTN
#define START_BTN 18
unsigned long popcornTimer;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
//Init BTN
pinMode(RFID_BTN,INPUT);
//RELE
pinMode(RELE_1_PIN, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}