mirror of
https://github.com/danbulant/ambientlightdemo
synced 2026-05-19 04:18:32 +00:00
9 lines
180 B
Python
9 lines
180 B
Python
import board
|
|
import neopixel
|
|
|
|
pixels = neopixel.NeoPixel(
|
|
board.D12, 25, brightness=1, auto_write=False, pixel_order=neopixel.GRB
|
|
)
|
|
|
|
pixels.fill((255, 255, 255))
|
|
pixels.show()
|