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