Dear all,
I love animals and often I encounter cats in my village. I therefore decided to build my own pet-RFID-decoder in order to rapidly report them to the TASSO.NET organisation.
After purchasing the wrong RFID module (134 kHz tags do not work with 125 kHz readers), I found what should be the right one: RFID module for 134,2 kHz - for animals.
Its core is a squared PCB with 2 Chips, of which however I could not find much since they have no information printed on them.
All what the online documentation says, is that it sends serial data at 9600 and can be directly connected to the serial port of any controller.
(picture "below" from the vendor)The first problem I got is that it does not tell which pin to use. I searched in the internet and found a video where the same component is used.
there one can notice that 3 wires are used from the J1: black, red and white.
Combining that information with the following data sheet that I found from another provider of the same component
(from the vendor)
I also found on Amazon in UK someone that recently purchased it and is satisfied.
I guessed that these are the GND, 5V and TXD. The 2 wires from the J3 are for the antenna.
I powered a nodemcu from USB, and connected the RFID module accordingly.
With my Digital Oscilloscope DSO138 I then checked if the antenna was sending any signal, and using the self-loop approach I observed signal generation. ( Therefore the device is properly working.
I then connected (what I believe to be) the TXD with the RX pin of the Nodemcu and then with a simple sketch tried to collect data.
#include "LiquidCrystal_I2C.h"
#include "Wire.h"
LiquidCrystal_I2C lcd(0x27, 20, 4);
void setup() {
lcd.init();
lcd.backlight();
lcd.setCursor(1, 0);
lcd.print("UART");
delay(3000);
Serial.begin(9600);
}
void loop() {
String message = "";
if (Serial.available()) {
lcd.print("reading");
message =Serial.readString();
lcd.print(message);
} else {
lcd.print("SERIAL NOT AVAILABLE");
}
delay(1000);
lcd.clear();
}
I also use a LCD to display the message.
The problem I have is that ... Serial.available() returns always false.
I then connected the DSO138 probe to the pin 4 of the RFID, and the ground to the common ground, and then recorded a video of the RFID output in presence of a 134,2 kHz tag. The video cannot be embedded in this report but you can see it here.
Apparently, othersreported positive experience with it.
Any advice ?





