The files here are the first iteration of the OpenLab framework.
The linux folder contains all the necessary scripts to gather information from the RFID-enabled card and pass that information to the database along with the status of the linux module itself (in my case, a Raspberry PI 2 running Raspbian Jessie). The scripts are automatically launched from the /etc/bash.bashrc
file when the PI logs in. The pinger is launched as a service, and the getinfo.py
script is launched as is.
Note: the getinfo.py
script relies on evdev
, a python library not included with Raspbian.
The web_ui folder contains all the necessary files to monitor and manage some elements of a MySQL database. Take note that the PI communicates with the web_ui and its PHP scripts in order to update values to the database.
In the case of this project, I used a Raspberry PI 2 running Raspbian Jessie. Any Linux machine with internet connectivity and a USB port or two will be able to support the framework. The project utilizes a RFIdeas pcProx Plus module to read a RFID-enabled card. Because of it, I needed to pull information directly from it rather than from TTY0
or something along the lines of that. Here, the evdev
module helps read the specific input. Make sure to edit the getinfo.py
file to match the device you're monitoring. You can find your attached inputs in /dev/input/by-id/
. Also, make sure to edit the domain in both the pinger.py
and getinfo.py
scripts.
Note: evdev
is a python library easily found on the internet. Simply install the library and make sure the import on the getinfo.py
file is right.
As an experiment, I setup the pinger script as a service and used a custom Daemon to run it in the background, so it is included with the framework.
Once everything is in order, simply edit the /etc/bash.bashrc
file to run the scripts upon login automatically.
Note: depending on the environment, automatic login varies across the distros, so I am not including instructions on how to set that up. Similarly, the bash.bashrc
file is included on Raspbian Jessie, but may not be included on other distros.
If everything was setup correctly, and automatic login was enabled, the module with the scanner attached should be able to read and send data to the database automatically.
To connect to your own database, simply edit the file /php/dbconnect.php
.
Everything else should be a copy-paste job without any issues.
To setup the database, refer to the MySQL section.
The setup is a bit inefficient due to the Web UI constantly calling the database to query for data, but a more efficient setup would require much more development time, something I did not have. Otherwise, the Web UI enables the user to monitor the status of the scanner module as well as edit all current entries.
The setup relies on 4 separate tables to work properly:
The log tracks all current and previous sign-ins, but it does not have the names of the people in it, rather their ID numbers.
To set it up, simply execute this SQL code to create the table log
:
CREATE TABLE IF NOT EXISTS `log` (
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`room` int(11) NOT NULL,
`description` varchar(144) COLLATE utf8_unicode_ci NOT NULL,
`tin` datetime NOT NULL,
`tout` datetime NOT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`signout` tinyint(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT;
The people table stores associated ID numbers to names.
To set it up, simply execute this SQL code to create the table people
:
CREATE TABLE IF NOT EXISTS `people` (
`name` varchar(100) NOT NULL,
`email` varchar(100) NOT NULL,
`number` varchar(100) NOT NULL,
`id` int(11) NOT NULL AUTO_INCREMENT,
`current_lab` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT;
The login table stores the login information for teachers and admins to access the faculty section of the project.
To set it up, simply execute this SQL code to create the table login
:
CREATE TABLE IF NOT EXISTS `login` (
`username` varchar(64) NOT NULL,
`password` varchar(64) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
The status table stores flags for various components of the framework such as the scanner module.
To set it up, simply execute this SQL code to create the table status
:
CREATE TABLE IF NOT EXISTS `status` (
`state` int(1) NOT NULL,
`new_id` int(1) NOT NULL,
`last_id_scanned` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
The labs table stores all relevant information about a person's experiment in association to the person's email.
To set it up, simply execute this SQL code to create the table labs
:
CREATE TABLE IF NOT EXISTS `labs` (
`email` varchar(64) NOT NULL,
`title` varchar(64) NOT NULL,
`room` int(6) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
The violations table stores information like the date and reason of violation as well as a flag that determines whether the student went through the repercussions.
To set it up, simply execute this SQL code to create the table violations
:
CREATE TABLE IF NOT EXISTS `violations` (
`violation` varchar(144) NOT NULL,
`date` date NOT NULL,
`id` varchar(64) NOT NULL,
`completed` int(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
The Students
section can be accessed by anyone from the home page. Once on the page, the student inputs his/her e-mail to retrieve any existing labs. If none exist, the student can create a new one by putting in the title, room, and a brief description of the lab. After, the student clicks Submit
, so the next time their card is scanned, the associated lab will automatically present itself on the Faculty log.
If the student has several labs at once, the student can select between the labs from the same menu after putting in his/her email without having the need to go through filling the form again. Simply select from the dropdown menu which lab the student needs to work on and click Submit
.
The Faculty
section is secured by a login system. With proper login information, a faculty member may access that section from where he/she can monitor the current status of the module, and the current ongoing labs. The faculty member also has access to the entire log of the project by clicking the calendar button.
The faculty member may edit variables in the table such as the title of the lab, and the location of the lab without having the student change it. Simply click on the desired field, and a window will popup where the faculty member can change the information.
To logout of the faculty section, simply click the blue door button.