https://github.com/qbbr/tray-led-control
Tray App for control LED strip WS2812B over Arduino serial port
https://github.com/qbbr/tray-led-control
arduino python3 serialport tray wxpython
Last synced: 2 months ago
JSON representation
Tray App for control LED strip WS2812B over Arduino serial port
- Host: GitHub
- URL: https://github.com/qbbr/tray-led-control
- Owner: qbbr
- License: mit
- Created: 2020-11-14T07:35:59.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-14T12:01:10.000Z (about 5 years ago)
- Last Synced: 2025-07-10T08:21:47.721Z (11 months ago)
- Topics: arduino, python3, serialport, tray, wxpython
- Language: Python
- Homepage:
- Size: 148 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tray-led-control
Tray App for control LED strip WS2812B over Arduino serial port
## depends
* [python3](https://www.python.org/)
* [wxPython](https://wxpython.org/)
* [pySerial](https://github.com/pyserial/pyserial)
see [requirements.txt](requirements.txt) for more datail
## arduino sketch
[arduino-led-control](https://github.com/qbbr/arduino-led-control)
## run
```bash
./tray-led-control.py
# see help for more detail
./tray-led-control.py -h
```

## dev
* [python3-venv](https://docs.python.org/3/library/venv.html)
```bash
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
```