About the Application
This project implements a very common access control device. The LTPS is equipped with Tibbit #08 (clock/data and Wiegand interface). It gets card codes from an external RFID card reader. The project lets you save user names and their ID codes into the database, as well as verify the cards you read against the records of the database. When you read a card which ID code matches any ID code from the database, the terminal “grants access” (the blue LED turns on). If this ID code has no match in the database, the terminal “denies access” (the red LED turns on).
This simple project demonstrates all main techniques that are important to building access control solutions with LTPS.
Some other distinctive features of this project:
-
The project utilizes a full-featured embedded SQLite SQL database engine.
-
The web interface shows card reader events in a real time.
Card Reader Integration
Application Structure
What you need
Hardware
-
1 x Tibbit #20 (9 terminal blocks);
-
1 x Linux TPS3 (LTPS3) board, optionally in a TBP3 enclosure;
-
1 x Tibbit #10 (power supply) ;
-
1 x Tibbit #08 (Wiegand & clock/data port);
-
1 x Tibbit #18 (power jack);
-
2 x Tibbit #00-3 (2 direct I/O lines with 5V and ground);
-
1 x Tibbit #39_2 (large red LED)*;
-
1 x Tibbit #39_4 (large blue LED)*;
-
Any external RFID reader with the Wiegand interface. In this tutorial, we used DF750K from Giga-TMS.
* In this case blue and red LED Tibbits indicate the “Access granted” and “Access denied” state.
On-board Software
-
SQLite database engine to store cardholder’s info and events;
-
Node.js V6.x.x (pre-installed during production)
GitHub Repository
Name: wiegand-demo
Repository page: https://github.com/tibbotech/wiegand-demo
Clone URL: https://github.com/tibbotech/wiegand-demo.git
Updated At: Mon Oct 10 2016
Node.js Application
-
The app utilizes the sqlite3 module as a permanent event and cardholder data store. The module is a serverless, self-contained SQL database engine which does not need any other software to be installed on the device.*
* The module is written in C++. A precompiled version will be installed from Tibbo’s GitHub during the app installation. If you want to install the module from NPM, you should also install build-essential on the device.
Configuration and Installation
-
Define the configuration in the LTPS Web Interface
-
Login to the LTPP3 board from the SSH client
-
Install NPM and other tools as required. Git-perltools are needed to install the precompiled sqlite3 module from GitHub.
-
Install the app:
git clone https://github.com/tibbotech/wiegand-demo.git
cd wiegand-demo
npm install .
- Launch a simple app called app0 :
node app0
-
Read an RFID card. Its binary code should be displayed in the console.
-
Stop app0
- Launch the main app:
node app
Web Client
-
The web client UI is based on the Angular Material library according to Google’s Material Style guide.
-
Angluar toolset binds the UI and the client-side application logic.
-
Socket.io library facilitates real-time bi-directional communications between the on-board and interface application.
The web interface includes three tabs:
1. Add a user tab
To enroll a user:
-
Click READ CARD;
-
Read a card; the ID code from this card will be displayed in the User ID field;
-
Fill in the First Name and Last Name fields manually;
-
Click ADD USER to make a new record in the database.
2. User List tab
This tab displays all the records you’ve created. It also allows you to delete user records.
3. Events tab
This tab displays access control events on-the-fly.