13 lines
348 B
Plaintext
13 lines
348 B
Plaintext
# Rainbow Cycle - Classic WLED effect
|
|
# Smooth rainbow colors cycling across the strip
|
|
|
|
strip length 60
|
|
|
|
# Create smooth rainbow cycle animation
|
|
animation rainbow_cycle = color_cycle_animation(
|
|
[0xFF0000, 0xFF8000, 0xFFFF00, 0x00FF00, 0x0000FF, 0x8000FF, 0xFF00FF], # rainbow colors
|
|
5s # cycle period
|
|
)
|
|
|
|
# Start the animation
|
|
run rainbow_cycle |