├── .editorconfig ├── HTML └── status.html ├── LICENSE ├── README.md ├── busylight.service ├── install.sh ├── photos ├── blue.jpg ├── ezgif.com-video-to-gif.gif ├── green.jpg ├── pink.jpg ├── red.jpg ├── teams-available-status.jpg ├── teams-busy-status.jpg └── yellow.jpg ├── rainbow ├── rainbow.py └── server.py ├── requirements.txt ├── server.py └── start.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/.editorconfig -------------------------------------------------------------------------------- /HTML/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/HTML/status.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/README.md -------------------------------------------------------------------------------- /busylight.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/busylight.service -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/install.sh -------------------------------------------------------------------------------- /photos/blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/photos/blue.jpg -------------------------------------------------------------------------------- /photos/ezgif.com-video-to-gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/photos/ezgif.com-video-to-gif.gif -------------------------------------------------------------------------------- /photos/green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/photos/green.jpg -------------------------------------------------------------------------------- /photos/pink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/photos/pink.jpg -------------------------------------------------------------------------------- /photos/red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/photos/red.jpg -------------------------------------------------------------------------------- /photos/teams-available-status.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/photos/teams-available-status.jpg -------------------------------------------------------------------------------- /photos/teams-busy-status.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/photos/teams-busy-status.jpg -------------------------------------------------------------------------------- /photos/yellow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/photos/yellow.jpg -------------------------------------------------------------------------------- /rainbow/rainbow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/rainbow/rainbow.py -------------------------------------------------------------------------------- /rainbow/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/rainbow/server.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | unicornhat 2 | flask 3 | gpiozero -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carolinedunn/unicorn-busy-server/HEAD/server.py -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- 1 | python3 ./server.py --------------------------------------------------------------------------------