From 71aa32dc219fe51c79e73c3d9e72ef8e7cc331dd Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Mon, 15 Dec 2025 22:59:15 +0100 Subject: [PATCH] perlin16 -> FastLED inoise16 we don't have the replacement function from upstream --- wled00/FX.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/FX.cpp b/wled00/FX.cpp index c1a54624..64bdf714 100644 --- a/wled00/FX.cpp +++ b/wled00/FX.cpp @@ -5166,7 +5166,7 @@ uint16_t mode_shimmer() { if (SEGMENT.check1) { modVal = (sin16_t((i * SEGMENT.custom2 << 6) + (strip.now * SEGMENT.custom3 << 5)) >> 8) + 128; // sine modulation: regular "Zebra" stripes } else { - modVal = perlin16((i * SEGMENT.custom2 << 7), strip.now * SEGMENT.custom3 << 5) >> 8; // perlin noise modulation + modVal = inoise16((i * SEGMENT.custom2 << 7), strip.now * SEGMENT.custom3 << 5) >> 8; // perlin noise modulation } color = color_fade(color, modVal, true); // dim by modulator value }