I'm trying to use an RGBW NeoPixel strip from my MicroBit and it works using CodeBlocks but I can't get access to the white pixel using MicroPython (https://python.microbit.org). It looks like the version of the neopixel module is an old version before the 4 colour LED's were supported. Despite a lot of Googling I'm at a loss as to whether I need to :
- import a different module
- create the strip using neopixel.NeoPixelRGBW(pin0,60) [doesn't work]
- create the strip using neopixel.NeoPixel(pin0,60,bpp=4) [doesn't work]
- give up trying to use MicroPython and look for an alternative python IDE
- Something else I've not thought of