├── .gitignore ├── 4logo.png ├── INSTALL.txt ├── LICENSE ├── README.md ├── diagrams └── BoothyFlash_schem.png ├── logs └── README.txt ├── pbooth.py ├── photos └── README.txt ├── quitBoothy.sh ├── rpi └── etc │ └── init.d │ └── boothyStart.sh ├── run.sh └── startBoothy.sh /.gitignore: -------------------------------------------------------------------------------- 1 | Thumbs.db -------------------------------------------------------------------------------- /4logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoroloco/boothy/HEAD/4logo.png -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoroloco/boothy/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoroloco/boothy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoroloco/boothy/HEAD/README.md -------------------------------------------------------------------------------- /diagrams/BoothyFlash_schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoroloco/boothy/HEAD/diagrams/BoothyFlash_schem.png -------------------------------------------------------------------------------- /logs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoroloco/boothy/HEAD/logs/README.txt -------------------------------------------------------------------------------- /pbooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoroloco/boothy/HEAD/pbooth.py -------------------------------------------------------------------------------- /photos/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoroloco/boothy/HEAD/photos/README.txt -------------------------------------------------------------------------------- /quitBoothy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoroloco/boothy/HEAD/quitBoothy.sh -------------------------------------------------------------------------------- /rpi/etc/init.d/boothyStart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoroloco/boothy/HEAD/rpi/etc/init.d/boothyStart.sh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoroloco/boothy/HEAD/run.sh -------------------------------------------------------------------------------- /startBoothy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoroloco/boothy/HEAD/startBoothy.sh --------------------------------------------------------------------------------