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:
authorMark Kriegsman <kriegsman@tr.org>2014-10-08 19:36:41 +0400
committerMark Kriegsman <kriegsman@tr.org>2014-10-08 19:36:41 +0400
commit97f45ca07c3e66ec9f84509b53ec12d0d6fa5dbf (patch)
tree78c0c287421025a1141b811313fb49c4ae7c3b51
parent68f469ca23b4168f54cef07b1629e8c18dd9585b (diff)
Made the comments match the code. Also reality.
-rw-r--r--examples/NoisePlusPalette/NoisePlusPalette.ino2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/NoisePlusPalette/NoisePlusPalette.ino b/examples/NoisePlusPalette/NoisePlusPalette.ino
index bca6698c..4e06bdd8 100644
--- a/examples/NoisePlusPalette/NoisePlusPalette.ino
+++ b/examples/NoisePlusPalette/NoisePlusPalette.ino
@@ -95,7 +95,7 @@ void fillnoise8() {
uint8_t data = inoise8(x + ioffset,y + joffset,z);
- // The range of the inoise8 function is roughly 16-240.
+ // The range of the inoise8 function is roughly 16-238.
// These two operations expand those values out to roughly 0..255
// You can comment them out if you want the raw noise data.
data = qsub8(data,16);