Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 4, 2021 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/0338e7d15577d53cddce43a61d9f7416 to your computer and use it in GitHub Desktop.
Save parzibyte/0338e7d15577d53cddce43a61d9f7416 to your computer and use it in GitHub Desktop.
char contenidoRfid[LONGITUD_BYTES] = "";
bool lecturaExitosa = leer(contenidoRfid);
if (lecturaExitosa)
{
Serial.println("Lo que hay escrito es:");
Serial.println(contenidoRfid);
}
else
{
Serial.println("Error leyendo. Tal vez no hay RFID presente");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment