Hello guys,
We want to implement a RFID 125 Khz Reader to our Raspberry.
We use following Hardware:
- Raspberry PI 2 (Jessie)
- RFID-Reader: RFID Reader Board 125 KHz (http://www.logingel.com/2267/1…Product/ ... ader_Board)
Especially, we want to read RFID-TAG´s with the EM4450 norm and we found the Reader mentioned above.
The electronic circuit is like this:
http://kampis-elektroecke.de/wp-content ... _Eagle.jpg
In Detail: (voltage divider included)
RFID Board | Raspberry Pi
VCC --> 5V
GND --> GND
OUT --> RX
All, should be read. We use following code:
Import time
Import serial
Tag1 = str()
PortRF = serial.Serial(`/dev/ttyAMA0`,9600)
Print “OK”
While True:
ID = “”
Read_byte = PortRF.read()
Print read_byte
However, nothing happened.
Do you have an idea why it could be? Maybe you know the RFID-Reader?
Thank you very much for your effort.
Yours sincerely,
SIIDigital