Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bmhatfield/led-strip-display
An LED-based Window Frame Display
https://github.com/bmhatfield/led-strip-display
go golang led led-strip react ws2812b
Last synced: about 1 month ago
JSON representation
An LED-based Window Frame Display
- Host: GitHub
- URL: https://github.com/bmhatfield/led-strip-display
- Owner: bmhatfield
- Created: 2017-10-20T03:05:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-04T15:08:24.000Z (about 2 years ago)
- Last Synced: 2024-10-14T10:28:04.006Z (3 months ago)
- Topics: go, golang, led, led-strip, react, ws2812b
- Language: Go
- Size: 2.71 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LED-Strip-Display
A UI and service for interacting with a WS2812B-based LED strip via a Raspberry pi.
## UI
![UI](ui.png)
## Notes
This software was built around the concept of wrapping a window frame with an addressable LED strip. In order to ease interactions with the strip, it also includes a React-based webui and an Echo-based backend web service.
Please note that this software is currently very purpose-built. The following are some constraints on the current implementation:
* The WebUI layout exactly matches the dimensions (in addressable LED pixels, of course) of my front window
* The service is designed to run on a Raspberry Pi and use the PWM channel
* It is built and run on Ubuntu 16.04, working around limitations in the Linux kernel via the PWM channel
* The PWM library for LED strips can be difficult to build (see here: https://github.com/jgarff/rpi_ws281x/issues/234 )However, the React component based design should allow folks to realign the Edges with the number of pixels they find most appropriate (adjusting the serialization approach as well).
## References
React:
* [Building your First React JS App](https://medium.com/learning-new-stuff/building-your-first-react-js-app-d53b0c98dc)
* [Getting Started with React JSX](https://www.sitepoint.com/getting-started-react-jsx/)Echo:
* [Customization](https://echo.labstack.com/guide/customization)
* [Error Handling](https://echo.labstack.com/guide/error-handling)
* [Godoc](https://godoc.org/github.com/labstack/echo)Systemd:
* [Creating and using a systemd service](https://www.digitalocean.com/community/questions/convert-run-at-startup-script-from-upstart-to-systemd-for-ubuntu-16)
## Feature Ideas
UI:
* ~~Gridlines~~
* ~~Clear Selection~~
* ~~Expanded Color Palette~~
* Color Gradient over Range
* Animation Support
* Save / Load Layouts by NameBackend:
* Update Library
* Gamma Correction
* Make timer optional