https://github.com/prior99/led-strip-server
A simple utility for controlling an RGB LED strip connected to a Raspberry PI.
https://github.com/prior99/led-strip-server
Last synced: 8 months ago
JSON representation
A simple utility for controlling an RGB LED strip connected to a Raspberry PI.
- Host: GitHub
- URL: https://github.com/prior99/led-strip-server
- Owner: Prior99
- Created: 2018-10-01T11:16:27.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-03T19:40:18.000Z (over 7 years ago)
- Last Synced: 2025-01-22T02:44:20.899Z (over 1 year ago)
- Language: Rust
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# led-strip-server
A simple utility for controlling an RGB LED strip connected to a Raspberry PI using three MOSFETs.
The server will listen on a websocket for new connections.
JSON structs like this one will be accepted: `{ "r": 255, "g": 128, "b": 0 }`
The server will broadcast changes to the currently configured color to all connected clients.
## Usage
Simple start the built binary:
```
led-strip-server start
```
## Building
Make sure a toolchain for ARMv7 is installed and build the project as usual with cargo:
```
cargo build --target armv7-unknown-linux-gnueabihf --release
```
## Contributors
- Frederick Gnodtke