6 lines
114 B
Python
6 lines
114 B
Python
from neopixel import NeoPixel
|
|
from machine import Pin
|
|
|
|
p = NeoPixel(Pin(6), 291)
|
|
p.fill((255, 255, 255))
|
|
p.write() |