Amigos buenas tardes, estoy desarrollando un proyecto en mi Universidad el cual Lee tarjetas de Rfid y necesito que una tarjeta me marque entrada y salida...paso la tarjeta una vez y es entrada, la vuelvo a pasar y es salida y así repetitivamente, es haciendo un contador pero no logro entender ni poder hacerlo, espero puedan ayudarle saludos !
Les dejo mi código como referencia, el código al detectar la tarjeta Rfid imprime en pantalla Osciloscopio itcv, necesito que al pasarlo una vez me imprima "entrada" y al volverla a pasar "salida"
//PROYECTO DE RESIDENCIAS ITCV
//RFID
#include <Wire.h>
#include <SPI.h>
#include <MFRC522.h>
#include <LiquidCrystal_I2C.h>
#define SS_PIN 53
#define RST_PIN 5
#define LED_G 4 //define green LED pin
#define LED_R 2 //define red LED
#define BUZZER 7 //buzzer pin
MFRC522 mfrc522(SS_PIN, RST_PIN); // Create MFRC522 instance.
LiquidCrystal_I2C lcd(0x3f,16,2);
void setup()
{
Serial.begin(9600); // Initiate a serial communication
lcd.backlight();
lcd.clear();
Serial.print("introduzca tarjeta");
SPI.begin(); // Initiate SPI bus
mfrc522.PCD_Init(); // Initiate MFRC522
pinMode(LED_G, OUTPUT);
pinMode(LED_R, OUTPUT);
pinMode(BUZZER, OUTPUT);
noTone(BUZZER);
Serial.println();
}
void loop()
{
{
// Look for new cards
if ( ! mfrc522.PICC_IsNewCardPresent())
{
return;
}
// Select one of the cards
if ( ! mfrc522.PICC_ReadCardSerial())
{
return;
}
//Show UID on serial monitor
Serial.print("UID tag :");
String content= "";
byte letter;
for (byte i = 0; i < mfrc522.uid.size; i++)
{
Serial.print(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " ");
Serial.print(mfrc522.uid.uidByte[i], HEX);
content.concat(String(mfrc522.uid.uidByte[i] < 0x10 ? " 0" : " "));
content.concat(String(mfrc522.uid.uidByte[i], HEX));
}
Serial.println();
Serial.print("Message : ");
content.toUpperCase();
if (content.substring(1) == "50 FF 1F A4") //change here the UID of the card/cards that you want to give access
{
Serial.println("osciloscopio itcv N:0150 Entrada");
Serial.println();
delay(500);
digitalWrite(LED_G, LOW);
tone(BUZZER, 500);
delay(300);
noTone(BUZZER);
delay(5000);
digitalWrite(LED_G, HIGH);
}
}
}