Skip to content

Instantly share code, notes, and snippets.

View dmpayton's full-sized avatar
🦄
Doin' all the things.

Derek Payton dmpayton

🦄
Doin' all the things.
View GitHub Profile
import board
import time
import neopixel
from random import choice, randint
leds = neopixel.NeoPixel(board.RX, 50, pixel_order=neopixel.RGB)
color = (128, 0, 255)
def permutations(iterable, r=None):