0

我正在使用 Raspberry Pi 4 Model B Rev 1.2 使用 Neopixel 库通过 Python 控制 RGB-Ringlight。我收到错误消息:ws2811_init failed with code -11 (Selected GPIO not possible) 我的代码是:

LightMode.CONTROLLER = neopixel.NeoPixel(board.D1,LED_COUNT,brightness=1,pixel_order=neopixel.GRB,auto_write=True,bpp=3)
LightMode.CONTROLLER.fill((0,0,0))

gpio readall 告诉我 BCM 引脚 18 是 GPIO 1 所以我将引脚设置为 1

4

1 回答 1

0

发现错误。NeoPixel 使用 Board Pin 编号,而不是 GPIO 编号。

于 2022-01-26T10:32:58.710 回答