microPython学习笔记4 NeoPixel灯带驱动

2022/1/8 14:33:36

本文主要是介绍microPython学习笔记4 NeoPixel灯带驱动,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

NeoPixel驱动程序

使用neopixel模块:

from machine import Pin
from neopixel import NeoPixel

pin = Pin(0, Pin.OUT)   # set GPIO0 to output to drive NeoPixels
np = NeoPixel(pin, 8)   # create NeoPixel driver on GPIO0 for 8 pixels
np[0] = (255, 255, 255) # set the first pixel to white
np.write()              # write data to all pixels
r, g, b = np[0]         # get first pixel colour

对于NeoPixel的低级驱动:

import esp
esp.neopixel_write(pin, grb_buf, is800khz)


这篇关于microPython学习笔记4 NeoPixel灯带驱动的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程