Hi
I'm trying read a RFID card using this code:
Quote:
//almacena el status del comando ejecutado
uint8_t state;
//buffer auxiliar
uint8_t aux[16];
//Almacenar el UID de la tarjeta
uint8_t CardID[4];
//Almacena las respuestas de los comandos
uint8_t ATQ[2];
void setup()
{
USB.begin();
USB.println("Arrancando el modulo RFID/NFC 13.25)");
//Arrancamos el módulo en el socket0 tipo B
RFID13.ON(SOCKET0,B);
delay(1000);
}
void loop()
{
RFID13.init(CardID, ATQ);
USB.print("\n");
USB.print("Identificador UID: ");
RFID13.print(CardID, 4)
}
But i have this error:
In function ‘void setup()’:
3: error: ‘RFID13’ was not declared in this scope In function ‘void loop()’:
I'm looking for the API v0.24, and i don't find RFID functions
Any advices?
Regards