diff --git a/src/effect_movingdot_simple.h b/src/effect_movingdot_simple.h index 437226d..4901d7f 100644 --- a/src/effect_movingdot_simple.h +++ b/src/effect_movingdot_simple.h @@ -16,6 +16,8 @@ class EffectMovingDotSimple : public Effect int greenLED = map(beatInfo.animationFrame(2), 0, 1000, 0, numLeds); leds[greenLED] = CRGB::Green; + + blur1d(leds, numLeds, 64); } };