No description
Find a file
2018-11-09 11:48:42 -05:00
cardscanner.gif Inital Commit of Code 2018-11-08 15:40:12 -05:00
cardscanner.svg Inital Commit of Code 2018-11-08 15:40:12 -05:00
dmp_cardreader.py Inital Commit of Code 2018-11-08 15:40:12 -05:00
README.md Update Readme 2018-11-09 11:48:42 -05:00

DMP Cardscanner

Program for reading numbers from proximity cards and storing or typing them

Features

  • Written in Python v3
  • Can export card list in format readable by Remote Link or System Link (In Progress)
  • Can type the card number as if it's been typed into the keyboard.

TODO

  • Port to Windows (and maybe MacOS)
  • Create installable packages

Requirements

  • Ubuntu Linux
  • RFIDeas USB Prox Card Scanner from DMP
Required Ubuntu Packages Installed (other than whats already installed by default)
  • python3-serial
  • python3-usb
  • python3-tk
  • python3-pip (This is needed to install the pyautogui package)
Installing pyautogui

The pyautogui module is not available as an Ubuntu package, and must be installed via pip. These instructions will install the module globally, so any user can use it.

Run the following commands:

sudo su
cd ~
umask 022
pip3 install pyautogui

Notes

Don't forget to make sure you have permissions to the USB serial device driver. On Ubuntu this can be done by adding your user to the dialout group by running sudo adduser [USERNAME] dialout and logging out/in.