NeoPixel module

The official pyboard running MicroPython.
This is the reference design and main target board for MicroPython.
You can buy one at the store.
Target audience: Users with a pyboard.
Post Reply
jamonda
Posts: 36
Joined: Thu May 21, 2020 3:48 pm

NeoPixel module

Post by jamonda » Mon Oct 05, 2020 11:15 am

Hi, friends.
Why don't we have the NeoPixel module builtin on the Pyboard? It's on the ESPs and on the Pyboard D, but not on the v1.1.
How can I put it into the firmware?
Thank you all in advance.

User avatar
pythoncoder
Posts: 5956
Joined: Fri Jul 18, 2014 8:01 am
Location: UK
Contact:

Re: NeoPixel module

Post by pythoncoder » Tue Oct 06, 2020 4:53 pm

Looking at the source it seems to be ESP32 specific. I can't see hide nor hair of it on my Pyboard D or in the manifest files.

Code: Select all

MicroPython v1.13-94-g817b80a10-dirty on 2020-10-02; PYBD-SF6W with STM32F767IIK
Type "help()" for more information.
>>> help('modules')
__main__          lcd160cr          uasyncio/funcs    umachine
_onewire          lcd160cr_test     uasyncio/lock     uos
_uasyncio         logging           uasyncio/stream   upysh
_webrepl          lwip              uasyncio_fast/__init__              urandom
builtins          math              uasyncio_fast/core                  ure
cmath             micropower        uasyncio_fast/queues                uselect
collections/__init__                micropython       uasyncio_fast/synchro               usocket
collections/deque native_misc       ubinascii         ussl
courier20         network           ubluetooth        ustruct
dht               onewire           ucollections      usys
errno             pyb               ucryptolib        utime
font10            ssd1306           uctypes           utimeq
font14            stm               uerrno            uwebsocket
framebuf          uarray            uhashlib          uzlib
freesans20        uasyncio/__init__ uheapq            webrepl
freeserif         uasyncio/core     uio               webrepl_setup
gc                uasyncio/event    ujson             websocket_helper
Peter Hinch
Index to my micropython libraries.

Post Reply