MFAshby / unicornpaint

A pretty basic painting app for the Raspberry Pi Unicorn HD hat. Allows multiple people to paint at once & updates in real time.
https://unicorn.mfashby.net
3 stars 0 forks source link

Redo the server in Go #1

Closed MFAshby closed 6 years ago

MFAshby commented 6 years ago

Python & Flask are real heavy, and probably not as performant as you can make it using Go.

Use Go's SPI library (https://godoc.org/golang.org/x/exp/io/spi) to make a client library for the unicorn hat Use Go's web server & websockets & concurrency to make a faster website (slowness right now is probably due to sending changes to every user in series before returning)

MFAshby commented 6 years ago

Done!