├── .gitignore ├── LICENSE ├── README.md ├── button-box.py ├── imgs ├── button-box-wiring.jpg ├── preview-rpi-and-buttons-closed-2.jpg └── preview-rpi-and-buttons.jpg ├── logrotate.d └── button-box ├── requirements.txt ├── scripts └── template.sh └── systemd └── button-box.service /.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | temp 3 | venv 4 | docs 5 | .idea 6 | 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgomesu/rpi-button-box/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgomesu/rpi-button-box/HEAD/README.md -------------------------------------------------------------------------------- /button-box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgomesu/rpi-button-box/HEAD/button-box.py -------------------------------------------------------------------------------- /imgs/button-box-wiring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgomesu/rpi-button-box/HEAD/imgs/button-box-wiring.jpg -------------------------------------------------------------------------------- /imgs/preview-rpi-and-buttons-closed-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgomesu/rpi-button-box/HEAD/imgs/preview-rpi-and-buttons-closed-2.jpg -------------------------------------------------------------------------------- /imgs/preview-rpi-and-buttons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgomesu/rpi-button-box/HEAD/imgs/preview-rpi-and-buttons.jpg -------------------------------------------------------------------------------- /logrotate.d/button-box: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgomesu/rpi-button-box/HEAD/logrotate.d/button-box -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgomesu/rpi-button-box/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgomesu/rpi-button-box/HEAD/scripts/template.sh -------------------------------------------------------------------------------- /systemd/button-box.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgomesu/rpi-button-box/HEAD/systemd/button-box.service --------------------------------------------------------------------------------