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.
- Host: GitHub
- URL: https://github.com/maxking/micropython
- Owner: maxking
- Created: 2018-06-16T00:29:27.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-16T00:48:57.000Z (about 8 years ago)
- Last Synced: 2025-01-20T22:51:03.051Z (over 1 year ago)
- Language: Python
- Size: 1.18 MB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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

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