Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support for the RDM6300 serial RFID module
Support for the RDM6300 serial RFID module 1.) Connect the RDM6300 module ------------------------------ Connect the RDM6300 module to the serial GPIO pins 14 and 15. 2.) Enable GPIO serial port --------------------------- Edit the /boot/config.txt (sudo nano /boot/config.txt) and add the following line: enable_uart=1 3.) Install dependecies ----------------------- Be aware not to install the "serial" module, install "pyserial" instead and the RPi.GPIO module: pip install pyserial RPi.GPIO 4.) Replace the default Reader.py --------------------------------- Replace the Reader.py file with the Reader_RDM6300.py: mv Reader.py Reader_default.py; mv Reader_RDM6300.py Reader.py
- Loading branch information