125kHz RFID Tag Emulator
6581
Posts: 132
Hey there,
I've just finished some proof-of-concept 125kHz RFID-Tag emulator
based on the Propeller. It emulates an RFID-Tag with 0xFFFFFFFFFF - binary 1111111111111111111111111111111111111111)
I haven't tryed it yet, but it should work.
Here's a circuit. You'll need an appropriate antenna of course (can be DIY - search for 125kHz Coil Antenna).
It sould be around 160uH. The transistor should be a NPN transistor.
I've just finished some proof-of-concept 125kHz RFID-Tag emulator
based on the Propeller. It emulates an RFID-Tag with 0xFFFFFFFFFF - binary 1111111111111111111111111111111111111111)
CON _clkmode = xtal1 + pll16x _xinfreq = 5_000_000 COIL_PIN = 4 WAIT = 4_728 ' So the ID gets transferred in exacty 32.761ms PUB main | chksum, i dira[COIL_PIN] := 1 outa[COIL_PIN] := 0 repeat i := 0 repeat 64 encodeManchester(0, id[i]) waitcnt(cnt+(CLKFREQ/WAIT+390)) encodeManchester(1, id[i]) waitcnt(cnt+(CLKFREQ/WAIT)) i++ waitcnt(cnt+(CLKFREQ*2)) PUB encodeManchester(clock, data) | encoded encoded := clock ^ data if(encoded == 1) outa[COIL_PIN] := 0 else outa[COIL_PIN] := 1 DAT ' Start squence B0 B1 B2 B3 B4 B5 B6 B7 B8 B9 End id byte 1,1,1,1,1,1,1,1,1, 1,1,1,1,0 ,1,1,1,1,0, 1,1,1,1,0 ,1,1,1,1,0, 1,1,1,1,0 ,1,1,1,1,0, 1,1,1,1,0 ,1,1,1,1,0, 1,1,1,1,0 ,1,1,1,1,0, 0,0,0,0,0
I haven't tryed it yet, but it should work.
Here's a circuit. You'll need an appropriate antenna of course (can be DIY - search for 125kHz Coil Antenna).
It sould be around 160uH. The transistor should be a NPN transistor.
Comments
Keep up the good work, and I would love to see you build a working prototype. I can see the this being used in college dorms around the world to brute force other kids RFID door locks haha.
Ahem... I don't understand this circuit. Where does it get it's power? Shouldn't the LC-tank be between the collector and power supply? Should work then.
The RFID tag is powered by inductivity. This circuit was also used
in an article featured at Hackaday.
for a fixed version.
6581 said:
I don't know about you, but I've had a lot projects that "should work" but didn't on my first attempt.
Duane Degn