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
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