This documentation details all of information necessary to start, develop, maintain, and update the Soda Machine in CS 213.
Pyserial
handles the serial communication of authorization and logging characters between the Raspberry Pi and Arduino platforms in the soda machine.
Pymsql
handles the connection to the SQL-lite database stored locally on the Raspberry Pi machine which stores the currency (i.e. how much money each user has).
Libusb1
handles the interfacing between the LCD screen and the Raspberry Pi so that the Raspberry Pi can write messages to the LCD.
Evdev
handles Kernel input interfacing for the magnetic strip reader when a user swipes their card.
Nanpy
handles the direct throughput and communication to the arduino board through python.
When migrating or reinstalling the system, please follow the following commands on the Raspberry Pi shell to install the main soda machine files NOT DEPENDENCIES
:
mkdir ~/pi/Soda-Machine/
cd ~/pi/Soda-Machine/
git init
git clone https://github.com/MST-ACM/ACM_SodaMachine_2.0.git
chmod +x main.py bin/smadmin bin/smdaemon
mv Documentation/sodamachine.init /etc/init.d/sodamachine
sudo update-rc.d sodamachine defaults
sudo service sodamachine restart
- The user swipes their Student ID into the magnetic strip reader which the magnetic strip reader translates to a
Student ID
Main.py
performs a database lookup on the Student ID to determine if the user has the required funds.- If the database lookup is successful, the Raspberry Pi sends an authorization character to the Arduino using the serial connection.
- If the database lookup is not successful the transaction fails and the Raspberry Pi resets it transaction state.
- After the Arduino receives the authorization character, it waits for the user to press a button on the soda machine
- If the user does not press a button after a certain amount of seconds, the transaction fails and the Raspberry Pi and Arduino reset their states.
- After the user presses a button, the Arduino turns on the motor associated with the button until the soda is dispensed.
- After the soda is dispensed, the Arduino sends a success character back to the Raspberry Pi so that the Raspberry Pi charges the user for the soda
- The user is charged here instead of step 4 to prevent any errors with a soda failing to be dispensed.
- Then, the Arduino and Raspberry Pi reset their states for the next transaction.
Please contact [email protected] if you would like to contribute to this project.