Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you may not be able to execute some actions.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
ESP8266能快速创建NeoPixel对象来控制WS2812灯珠: import machine, neopixel np = neopixel.NeoPixel( machine.Pin(4), 8 )
PYBoard能导入WS2812库来实现操作: from ws2812 import WS2812 ring = WS2812(spi_bus=1, led_count=16)
在OpenMV中是否有类似的库可以导入?
pyboard能用的openmv正常都可以用。
https://github.com/JanBednarik/micropython-ws2812