POST 9: MADDNESS OVERWHELMS

i used the raspberry Pi Pico W to flash a strip of LEDs


import board
import neopixel

num_pixels = 30

pixels = neopixel.NeoPixel(board.GP0, num_pixels)
pixels.brightness = 0.5

while True:
pixels.fill((255, 0, 0))

should work maybe

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top