Page 1 of 1

Como Leer/Escribir en RDM-6300?

PostPosted: Tue Jun 21, 2016 7:06 am
by dardoelectro
Hola Soy nuevo en este tema, soy entusiasta en electrónica y programacion.
Estoy buscando un código para leer/escribir tags con el modulo RDM-6300.
Ya he conseguido leer los tags con varios codigos simple por ejemplo este:

#include <SoftwareSerial.h>
SoftwareSerial RFID(2, 3); // RX and TX

int i;

void setup()
{
RFID.begin(9600); // start serial to RFID reader
Serial.begin(9600); // start serial to PC
}

void loop()
{
if (RFID.available() > 0)
{
i = RFID.read();
Serial.print(i, DEC);
Serial.print(" ");
}
}

y tambien he usado el codigo del ID-20LA :
rfid_data
Espero su ayuda, saludos dardo

Re: Como Leer/Escribir en RDM-6300?

PostPosted: Tue Jun 21, 2016 10:20 am
by bengchet
Hi,

You can refer to this tutorial. The tutorial utilises module RDM-6300 for reading RFID tags.