You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
401 B
15 lines
401 B
#!/bin/env python3
|
|
import gex
|
|
import time
|
|
|
|
with gex.Client(gex.TrxRawUSB()) as client:
|
|
# Neopixel strip
|
|
strip = gex.Neopixel(client, 'neo')
|
|
# Load RGB to the strip
|
|
strip.load([0xFF0000, 0xFFFF00, 0x00FF00, 0x0000FF, 0xFF00FF])
|
|
|
|
for i in range(0,255):
|
|
strip.load([0xFF0000+i, 0xFFFF00, 0x00FF00, 0x0000FF, 0xFF00FF])
|
|
time.sleep(0.001)
|
|
|
|
strip.clear()
|
|
|