Tasmota/lib/libesp32/berry_animation/anim_examples/rainbow_cycle.anim
2025-08-01 19:34:23 +02:00

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