diff --git a/examples/RP2040/NeoPixel_RP2040_PioX4/NeoPixel_RP2040_PioX4.ino b/examples/RP2040/NeoPixel_RP2040_PioX4/NeoPixel_RP2040_PioX4.ino index 0d131c8..8e98445 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 +}