├── .gitignore ├── LICENSE.txt ├── README.md ├── STL ├── PiInk_stand_4_Inch.stl ├── PiInk_stand_5.7_Inch.stl └── PiInk_stand_7.3_Inch.stl ├── config ├── requirements.txt └── settings.json ├── install.sh ├── scripts ├── setup.sh └── start.sh ├── src ├── generateInfo.py ├── templates │ └── main.html └── webserver.py └── static └── code.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/README.md -------------------------------------------------------------------------------- /STL/PiInk_stand_4_Inch.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/STL/PiInk_stand_4_Inch.stl -------------------------------------------------------------------------------- /STL/PiInk_stand_5.7_Inch.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/STL/PiInk_stand_5.7_Inch.stl -------------------------------------------------------------------------------- /STL/PiInk_stand_7.3_Inch.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/STL/PiInk_stand_7.3_Inch.stl -------------------------------------------------------------------------------- /config/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/config/requirements.txt -------------------------------------------------------------------------------- /config/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/config/settings.json -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/install.sh -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/scripts/setup.sh -------------------------------------------------------------------------------- /scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/scripts/start.sh -------------------------------------------------------------------------------- /src/generateInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/src/generateInfo.py -------------------------------------------------------------------------------- /src/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/src/templates/main.html -------------------------------------------------------------------------------- /src/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tlstommy/PiInk/HEAD/src/webserver.py -------------------------------------------------------------------------------- /static/code.js: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------