博主拿到一块ws2812b灯带, 就想着赶紧尝试点亮,但是发现一不会连线 二不会代码

可谓是一窍不通,网上的教程也都不是特别详细,我经过多次踩坑终于成功点亮。于是我便想把我的开发过程重温一遍。

应该是最详细的了。

需要材料:

1、已经成功连接显示器的树莓派开发板(具体没有什么要求)

2、ws2812b灯带

3、杜邦线三根 公对母(一段是接口 ,一端是针脚)

        

一、连线

        对于灯带,如果只有一串的话只需要将其带插头的一端连上即可。其带针脚一端是多组灯带串联时候用。

然后要知道,对于要连的三根线,红色是正级,绿色是信号线,白色是负极。这个要结合树莓派的针脚,对应连接

        最后要知道,树莓派的针脚, 标有5V的代表是正极 输出5V电压(这里灯带需要的就是5V电压), 标有GND的 应该接负极, 之后与信号线相接的有许多,这里用标有#18的针脚。

 

这样就算接线完成了

二、代码部分

        这里需要第三方库 rpi_ws281x 库 

在终端(ctrl + alt + t)中通过pip下载该库

推荐使用sudo pip3 install rpi_ws281x

其他指令安装可能对点亮有影响

之后在py文件中复制以下代码

import time
from rpi_ws281x import PixelStrip, Color
import argparse

LED_COUNT = 16        # LED灯的个数
LED_PIN = 18          # DI端接GPIO18

# 以下可以不用改
LED_FREQ_HZ = 800000  # LED signal frequency in hertz (usually 800khz)
LED_DMA = 10          # DMA channel to use for generating signal (try 10)
LED_BRIGHTNESS = 255  # Set to 0 for darkest and 255 for brightest
LED_INVERT = False    # True to invert the signal (when using NPN transistor level shift)
LED_CHANNEL = 0       # set to '1' for GPIOs 13, 19, 41, 45 or 53

# 以下为LED模式变换的各个函数
def colorWipe(strip, color, wait_ms=20):
    """一次擦除显示像素的颜色."""
    for i in range(strip.numPixels()):
        strip.setPixelColor(i, color)
        strip.show()
        time.sleep(wait_ms / 1000.0)

def theaterChase(strip, color, wait_ms=50, iterations=10):
    """电影影院灯光风格的追逐动画."""
    for j in range(iterations):
        for q in range(3):
            for i in range(0, strip.numPixels(), 3):
                strip.setPixelColor(i + q, color)
            strip.show()
            time.sleep(wait_ms / 1000.0)
            for i in range(0, strip.numPixels(), 3):
                strip.setPixelColor(i + q, 0)

def wheel(pos):
    """生成横跨0-255个位置的彩虹颜色."""
    if pos < 85:
        return Color(pos * 3, 255 - pos * 3, 0)
    elif pos < 170:
        pos -= 85
        return Color(255 - pos * 3, 0, pos * 3)
    else:
        pos -= 170
        return Color(0, pos * 3, 255 - pos * 3)

def rainbow(strip, wait_ms=20, iterations=1):
    """绘制彩虹,褪色的所有像素一次."""
    for j in range(256 * iterations):
        for i in range(strip.numPixels()):
            strip.setPixelColor(i, wheel((i + j) & 255))
        strip.show()
        time.sleep(wait_ms / 1000.0)

def rainbowCycle(strip, wait_ms=10, iterations=5):
    """画出均匀分布在所有像素上的彩虹."""
    for j in range(256 * iterations):
        for i in range(strip.numPixels()):
            strip.setPixelColor(i, wheel(
                (int(i * 256 / strip.numPixels()) + j) & 255))
        strip.show()
        time.sleep(wait_ms / 1000.0)

def theaterChaseRainbow(strip, wait_ms=50):
    """旋转的彩色灯光."""
    for j in range(256):
        for q in range(3):
            for i in range(0, strip.numPixels(), 3):
                strip.setPixelColor(i + q, wheel((i + j) % 255))
            strip.show()
            time.sleep(wait_ms / 1000.0)
            for i in range(0, strip.numPixels(), 3):
                strip.setPixelColor(i + q, 0)

# Main program logic follows:
if __name__ == '__main__':
    # Process arguments
    parser = argparse.ArgumentParser()
    parser.add_argument('-c', '--clear', action='store_true', help='clear the display on exit')
    args = parser.parse_args()

    # Create NeoPixel object with appropriate configuration.
    strip = PixelStrip(LED_COUNT, LED_PIN, LED_FREQ_HZ, LED_DMA, LED_INVERT, LED_BRIGHTNESS, LED_CHANNEL)
    # Intialize the library (must be called once before other functions).
    strip.begin()

    print('Press Ctrl-C to quit.')
    if not args.clear:
        print('Use "-c" argument to clear LEDs on exit')

    try:
        while True:
            print('Color wipe animations.')
            colorWipe(strip, Color(255, 255, 0))  # Red wipe
            colorWipe(strip, Color(0, 0, 0), 30)
            colorWipe(strip, Color(0, 255, 255))  # Blue wipe
            colorWipe(strip, Color(0, 0, 0), 30)
            colorWipe(strip, Color(255, 0, 255))  # Green wipe
            colorWipe(strip, Color(0, 0, 0), 30)
            
            print('Theater chase animations.')
            print('Rainbow animations.')
            rainbow(strip)
            colorWipe(strip, Color(0, 0, 0), 50)
            rainbowCycle(strip)
            colorWipe(strip, Color(0, 0, 0), 40)
            break
        while True:
            rainbowCycle(strip)
            #print('***********************')
            colorWipe(strip, Color(0, 0, 0), 100)

    except:
        colorWipe(strip, Color(0, 0, 0), 100)

之后要注意

这个库非常奇怪,直接在ide中运行会报错,需要在终端中运行python文件

直接ide中运行报错结果:(可能不完全相同)

RuntimeError: ws2811_init failed with code -5 (mmap() failed)

先用cd 路径找到所在文件位置

然后用sudo python 文件名  运行

如果出现

ImportError: No module named _rpi_ws281x

 说明安装rpi_ws281x库可能有问题

先用pip uninstall rpi_ws281x库 将其删掉

然后再用sudo pip3 install rpi_ws281x 下载

如果运行成功,应该就能点亮这个花里胡哨的灯了

并且在终端中会有 Color wipe animations等等提示

tips: 接线是否正确是不影响程序运行的   如果确实出现了提示但是灯没有亮,有可能是线没有接正确   要注意 灯带上红 绿 白 经过杜邦线连接后对应接树莓派上针脚显示为 5V #18  GND

亲测 无论哪个5V、哪个GND都可以正确点亮

想关闭灯光就在终端中按两次ctrl+c   想彻底关闭直接拔掉接线即可

这里灯光效果是由代码实现的,故你也可以通过自己的代码实现自己想要的效果

欣赏一下光污染~

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐