6 lines
106 B
Python
6 lines
106 B
Python
|
import board
|
||
|
import neopixel
|
||
|
pixels = neopixel.NeoPixel(board.D5, 30)
|
||
|
|
||
|
def theaterChaseRainbow():
|
||
|
pass
|