Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Garcia <danielgarcia@gmail.com>2014-06-02 21:38:08 +0400
committerDaniel Garcia <danielgarcia@gmail.com>2014-06-02 21:38:08 +0400
commit433a672b0ed6783397518a70c21b52253bdc65a9 (patch)
tree497627f3108c31b41100a975c11bd010c3feca99 /examples
parent6079de290ed535656a2167f704b487c4c7fb7d41 (diff)
Only want progmem on avr
Diffstat (limited to 'examples')
-rw-r--r--examples/NoisePlayground/NoisePlayground.ino2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/NoisePlayground/NoisePlayground.ino b/examples/NoisePlayground/NoisePlayground.ino
index 7d13cbef..08277093 100644
--- a/examples/NoisePlayground/NoisePlayground.ino
+++ b/examples/NoisePlayground/NoisePlayground.ino
@@ -61,7 +61,7 @@ void setup() {
delay(3000);
LEDS.addLeds<WS2811,5,GRB>(leds,NUM_LEDS);
- LEDS.setBrightness(32);
+ LEDS.setBrightness(96);
x = (uint32_t)((uint32_t)random16() << 16) | random16();
y = (uint32_t)((uint32_t)random16() << 16) | random16();