From 8b689911bf4b2c7ad3929f6659ca7f022cc38134 Mon Sep 17 00:00:00 2001 From: "R. Powers" Date: Thu, 29 Oct 2015 16:01:46 -0700 Subject: [PATCH] Set Default Brightness Level The NeoPixels are incredibly bright. This change tones down the brightness. As an added bonus, this commit also utilizes the 'setBrightness' method which helps demonstrate its functionality. --- examples/strandtest/strandtest.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/strandtest/strandtest.ino b/examples/strandtest/strandtest.ino index c91e1fa8..279db9b0 100644 --- a/examples/strandtest/strandtest.ino +++ b/examples/strandtest/strandtest.ino @@ -28,6 +28,7 @@ void setup() { strip.begin(); + strip.setBrightness(50); // Ranges from 0 (off) to 255 (full power) strip.show(); // Initialize all pixels to 'off' }