From 776f8d17b0a856dd9b0e6263fe886e38e2898716 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Tue, 10 Oct 2023 08:56:43 -0700 Subject: [PATCH] Updated FAQ #3 (markdown) --- FAQ-#3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FAQ-#3.md b/FAQ-#3.md index 51808f7..d66cc04 100644 --- a/FAQ-#3.md +++ b/FAQ-#3.md @@ -56,7 +56,7 @@ void loop() { // other parts of your code, you set the colors, and show if (strip != NULL) { // some arbitrary code - for (uint16_t pixel = 0; pixel < strip.PixelCount(); pixel++) { + for (uint16_t pixel = 0; pixel < strip->PixelCount(); pixel++) { strip->SetPixelColor(pixel, red); } strip->Show();