~ruther/map-led-strip

bd185825a32c333777843f20300148d5226d6573 — František Boháček 1 year, 9 months ago d8e7cb5 main
fix: set finished of snake animation on the last step, not after
1 files changed, 6 insertions(+), 2 deletions(-)

M src/animations/snake_animation.rs
M src/animations/snake_animation.rs => src/animations/snake_animation.rs +6 -2
@@ 47,12 47,16 @@ impl<const LEDS_COUNT: usize> Animation for SnakeAnimation<LEDS_COUNT> {
    }

    fn next(&mut self) -> Result<AnimationStep, AnimationError> {
        if self.step == LEDS_COUNT + 100 {
            self.finished = true;
        let last = LEDS_COUNT + 100;
        if self.step == last {
            return Err(AnimationError::LastStep);
        }

        self.step += 1;
        if self.step == last {
            self.finished = true;
        }

        Ok(AnimationStep::new(self.step_duration))
    }


Do not follow this link