Programming's checkout system for devices we use.
- Raspberry PI
- Barcode Scanner
- Download Raspberry Pi OS Lite and flash onto pi.
- Use
raspi-config
to configure console autologin, hostname, etc. - From your computer, clone the repository, then type
scp -r <this repo> username@hostname:/home/username/prog-checkout
to send it to the pi. - Set execute repo script on the PI in
~/.bash_profile
source ~/.profile
if [ -z $DISPLAY ] && [ $(tty) = /dev/tty1 ]
then
cd ~/prog-checkout
python3 barcode.py
fi