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-10-02 08:40:59 +0400
committerDaniel Garcia <danielgarcia@gmail.com>2014-10-02 08:40:59 +0400
commitfec8a89aa8e6930e77ae735cc33ad3a9bf5d2098 (patch)
treea1fa35c5c022ed8f586a6df7326c6056493242ba
parent483ecfd225c34be1df277bdd6a591ed6857f591a (diff)
Getting rid of redundant countFPS calls
-rw-r--r--examples/Noise/Noise.ino1
-rw-r--r--examples/NoisePlayground/NoisePlayground.ino1
-rw-r--r--examples/SmartMatrix/SmartMatrix.ino1
3 files changed, 0 insertions, 3 deletions
diff --git a/examples/Noise/Noise.ino b/examples/Noise/Noise.ino
index dab26e7e..c2a64752 100644
--- a/examples/Noise/Noise.ino
+++ b/examples/Noise/Noise.ino
@@ -108,6 +108,5 @@ void loop() {
ihue+=1;
LEDS.show();
- LEDS.countFPS();
// delay(10);
}
diff --git a/examples/NoisePlayground/NoisePlayground.ino b/examples/NoisePlayground/NoisePlayground.ino
index 35890146..e2c7cb31 100644
--- a/examples/NoisePlayground/NoisePlayground.ino
+++ b/examples/NoisePlayground/NoisePlayground.ino
@@ -42,7 +42,6 @@ void loop() {
hue_octaves,hxy,hue_scale,hxy,hue_scale,hue_time, false);
LEDS.show();
- LEDS.countFPS();
// adjust the intra-frame time values
x += x_speed;
diff --git a/examples/SmartMatrix/SmartMatrix.ino b/examples/SmartMatrix/SmartMatrix.ino
index 99d75a42..997b6d24 100644
--- a/examples/SmartMatrix/SmartMatrix.ino
+++ b/examples/SmartMatrix/SmartMatrix.ino
@@ -117,6 +117,5 @@ void loop() {
circlex += random16(2);
circley += random16(2);
LEDS.show();
- LEDS.countFPS();
// delay(10);
}