Skip to main content

pymcu-lib-neopixel

WS2812 / NeoPixel addressable LED strips for PyMCU — compiled to native machine code, with no interpreter on the chip.

pymcu install neopixel

The same strip, three APIs

Which one you get depends on the stdlib layer your project declares. The import is always neopixel.

Native (stdlib unset):

from neopixel import NeoPixel

strip = NeoPixel("PD6", 8)
strip[0] = (255, 0, 0)
strip.show()

MicroPython (stdlib = ["micropython"]) — a MicroPython script, unchanged:

from machine import Pin
from neopixel import NeoPixel

np = NeoPixel(Pin(6), 8)
np[0] = (255, 0, 0)
np.write()

CircuitPython (stdlib = ["circuitpython"]) — a CircuitPython script, unchanged:

import board
import neopixel

pixels = neopixel.NeoPixel(board.D6, 8, auto_write=False)
pixels.fill((0, 32, 0))
pixels.show()

None of those three files contains a single conditional: the layer adapters are plain Python written against each API as it is documented upstream. Everything that has to know about a chip lives in one private module, _neopixel.core, and the compiler folds it away.

Cost

Colours live in a per-strip SRAM framebuffer, 3 bytes per pixel in WS2812 wire order — 24 bytes for a strip of 8, and nothing else. Every method is @inline, so no object is allocated on the device and no method call survives compilation.

Measured figures per chip are published in the library index, and the flash cost of every example in this repo is in docs/Getting-started.md.

Supported hardware

WS2812 / WS2812B / NeoPixel strips on AVR (ATmega328P and friends) at 16 MHz, on pins PB0-PB5 and PD2-PD7. show() / write() disables interrupts for the duration of the transmission and restores them afterwards, since WS2812 bit timing has no clock line to resynchronize against — see docs/How-it-works.md.

Bit timing (750 ns / 437.5 ns high pulses, inside both the WS2812 and WS2812B datasheet windows) is verified by tests/test_timing.py, which compiles a probe program and measures it cycle-by-cycle on the avr8sharp AVR emulator — not yet verified against a real strip on a logic analyzer. One pin, PB0, is not yet covered by this fix and should be avoided until it is. See docs/How-it-works.md for the measured numbers, the PB0 gap, and how the numbers were obtained.

Other architectures raise a compile-time error rather than returning something that looks like it worked. Ports are welcome: _neopixel/avr.py is the whole contract — see docs/Porting-to-a-new-architecture.md.

Examples

Five complete, buildable PyMCU projects live under examples/: the native, MicroPython and CircuitPython APIs doing the same fill-and-blink, plus a per-pixel colour wipe and an auto_write demo. See docs/Getting-started.md for how to build them and their measured flash cost.

Documentation

License

MIT.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymcu_lib_neopixel-0.2.0.tar.gz (28.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pymcu_lib_neopixel-0.2.0-py3-none-any.whl (12.4 kB view details)

Uploaded Python 3

File details

Details for the file pymcu_lib_neopixel-0.2.0.tar.gz.

File metadata

  • Download URL: pymcu_lib_neopixel-0.2.0.tar.gz
  • Upload date:
  • Size: 28.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pymcu_lib_neopixel-0.2.0.tar.gz
Algorithm Hash digest
SHA256 27915ca58e64a7933034365e6b661da8a7852316e5731fcd670efacbfdb84ee4
MD5 238c214364d2431f99b573a50e4f886f
BLAKE2b-256 bfe5897eb26b31eaea704ae8e81b66ae054cd188ccc9ec8aed28cff82e8b748b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymcu_lib_neopixel-0.2.0.tar.gz:

Publisher: publish.yml on PyMCU/pymcu-lib-neopixel

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pymcu_lib_neopixel-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pymcu_lib_neopixel-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 83229585d8e8bc56be06b5d11349102453c49f42146e1a22ab675b44956e0d1e
MD5 d8d9ab416a899494d9afa9810f27e698
BLAKE2b-256 1ab7373c66de201936dfa6565d1995698e233a48a66ce776a5910cdcf3b9e9de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pymcu_lib_neopixel-0.2.0-py3-none-any.whl:

Publisher: publish.yml on PyMCU/pymcu-lib-neopixel

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page