diff --git a/micropython/examples/plasma_2350/rainbow.py b/micropython/examples/plasma_2350/rainbow.py index d1d7c11..6084a16 100644 --- a/micropython/examples/plasma_2350/rainbow.py +++ b/micropython/examples/plasma_2350/rainbow.py @@ -22,6 +22,6 @@ while True: for i in range(NUM_LEDS): hue = float(i) / NUM_LEDS - led_strip.set_hsv(i, offset, 1.0, 1.0) + led_strip.set_hsv(i, hue+offset, 1.0, 1.0) time.sleep(1.0 / 60)