Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/HeMan/micropython-ws2801

MicroPython library for WS2801
https://github.com/HeMan/micropython-ws2801

Last synced: 2 months ago
JSON representation

MicroPython library for WS2801

Lists

README

        

# MicroPython WS2801

A MicroPython library to interface with strands of WS2801 RGB LEDs. It's based
on Adafruit WS2801 library for regular Python.

## Examples

Copy the file to your device, using ampy, webrepl or compiling and deploying. eg.

```bash
$ ampy put ws2801.py
```

or use upip
```python
>>> import upip
>>> upip.install('micropython-ws2800')
```

**Use a 7 pixel strand and set all LED's red**
```python
from machine import SPI
from ws2801 import WS2801Pixels

spi = SPI(1)
ws = WS2801Pixels(7, spi)

ws.set_pixels_rgb(255, 0, 0)
ws.show()
```

## Links

* [Adafruit WS2801](https://github.com/adafruit/Adafruit_Python_WS2801)
* [micropython.org](http://micropython.org)
* [Adafruit Ampy](https://learn.adafruit.com/micropython-basics-load-files-and-run-code/install-ampy)

## License

Licensed under the [MIT License](http://opensource.org/licenses/MIT).