From d95a8d2522882408231f985c90c60fb621566737 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Tue, 19 Mar 2024 09:00:18 -0700 Subject: [PATCH] Update NeoPixel_RP2040_PioX4.ino fix comment --- .../RP2040/NeoPixel_RP2040_PioX4/NeoPixel_RP2040_PioX4.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/RP2040/NeoPixel_RP2040_PioX4/NeoPixel_RP2040_PioX4.ino b/examples/RP2040/NeoPixel_RP2040_PioX4/NeoPixel_RP2040_PioX4.ino index 0d131c87..8e984453 100644 --- a/examples/RP2040/NeoPixel_RP2040_PioX4/NeoPixel_RP2040_PioX4.ino +++ b/examples/RP2040/NeoPixel_RP2040_PioX4/NeoPixel_RP2040_PioX4.ino @@ -48,9 +48,9 @@ void loop() { strip4.SetPixelColor(0, RgbwColor(0, 0, 128, 255)); // white channel with a little blue // show them, - // only on the last show, no matter the order, will the data be sent + // each strip will start sending on their show call strip1.Show(); strip2.Show(); strip3.Show(); strip4.Show(); -} \ No newline at end of file +}