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

https://github.com/maxking/micropython

Scripts for my experiments with micropython board (NodeMCU) and neopixel.
https://github.com/maxking/micropython

Last synced: 9 months ago
JSON representation

Scripts for my experiments with micropython board (NodeMCU) and neopixel.

Awesome Lists containing this project

README

          

# micropython

Scripts for my experiments with micropython board (NodeMCU) and neopixel.

# Parts:
- [NeoPixel Ring](https://www.amazon.com/gp/product/B073R6P2FW)
- [NodeMCU](https://www.amazon.com/gp/product/B010O1G1ES)

# Tools
- [Micropython webrepl](http://micropython.org/webrepl/)
- [esptool.py](https://pypi.org/project/esptool/)

# Demo

![NeoPixel Demo](gifs/neopixel.gif)

## Code

```python
>>> from neopixel_helpers import np_setup, rainbow
>>> np = np_setup()
>>> rainbow(np)
```