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:
authorper1234 <accounts@perglass.com>2018-04-19 00:03:24 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2018-04-19 00:03:24 +0300
commit6fd236684e31c7703dfba697e86b2b8e9028b75f (patch)
tree68d601abb0d81011a1e2d69c0fd156f5416deaa0 /examples
parentef49e12b3ef614009b3cb8cb5ff3eb1c73d2aa08 (diff)
Use consistent include syntax (#571)
- Angle brackets for external includes - Space after #include directive
Diffstat (limited to 'examples')
-rw-r--r--examples/Blink/Blink.ino2
-rw-r--r--examples/Cylon/Cylon.ino2
-rw-r--r--examples/DemoReel100/DemoReel100.ino2
-rw-r--r--examples/FirstLight/FirstLight.ino2
-rw-r--r--examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino2
-rw-r--r--examples/Multiple/MirroringSample/MirroringSample.ino2
-rw-r--r--examples/Multiple/MultiArrays/MultiArrays.ino2
-rw-r--r--examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino2
-rw-r--r--examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino4
-rw-r--r--examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino2
-rw-r--r--examples/Noise/Noise.ino2
-rw-r--r--examples/NoisePlusPalette/NoisePlusPalette.ino2
-rw-r--r--examples/RGBCalibrate/RGBCalibrate.ino2
-rw-r--r--examples/RGBSetDemo/RGBSetDemo.ino2
-rw-r--r--examples/SmartMatrix/SmartMatrix.ino4
15 files changed, 17 insertions, 17 deletions
diff --git a/examples/Blink/Blink.ino b/examples/Blink/Blink.ino
index 95eb6cb2..33648694 100644
--- a/examples/Blink/Blink.ino
+++ b/examples/Blink/Blink.ino
@@ -1,4 +1,4 @@
-#include "FastLED.h"
+#include <FastLED.h>
// How many leds in your strip?
#define NUM_LEDS 1
diff --git a/examples/Cylon/Cylon.ino b/examples/Cylon/Cylon.ino
index be022076..f51c3487 100644
--- a/examples/Cylon/Cylon.ino
+++ b/examples/Cylon/Cylon.ino
@@ -1,4 +1,4 @@
-#include "FastLED.h"
+#include <FastLED.h>
// How many leds in your strip?
#define NUM_LEDS 64
diff --git a/examples/DemoReel100/DemoReel100.ino b/examples/DemoReel100/DemoReel100.ino
index 03534a91..b4478735 100644
--- a/examples/DemoReel100/DemoReel100.ino
+++ b/examples/DemoReel100/DemoReel100.ino
@@ -1,4 +1,4 @@
-#include "FastLED.h"
+#include <FastLED.h>
FASTLED_USING_NAMESPACE
diff --git a/examples/FirstLight/FirstLight.ino b/examples/FirstLight/FirstLight.ino
index ce89f640..9f561b08 100644
--- a/examples/FirstLight/FirstLight.ino
+++ b/examples/FirstLight/FirstLight.ino
@@ -3,7 +3,7 @@
// Use if you want to force non-accelerated pin access (hint: you really don't, it breaks lots of things)
// #define FASTLED_FORCE_SOFTWARE_SPI
// #define FASTLED_FORCE_SOFTWARE_PINS
-#include "FastLED.h"
+#include <FastLED.h>
///////////////////////////////////////////////////////////////////////////////////////////
//
diff --git a/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino b/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino
index b2b115e2..3b7a9c79 100644
--- a/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino
+++ b/examples/Multiple/ArrayOfLedArrays/ArrayOfLedArrays.ino
@@ -3,7 +3,7 @@
// different pins, each strip getting its own CRGB array to be played with, only this time they're going
// to be all parts of an array of arrays.
-#include "FastLED.h"
+#include <FastLED.h>
#define NUM_STRIPS 3
#define NUM_LEDS_PER_STRIP 60
diff --git a/examples/Multiple/MirroringSample/MirroringSample.ino b/examples/Multiple/MirroringSample/MirroringSample.ino
index 39d748bd..a6d63121 100644
--- a/examples/Multiple/MirroringSample/MirroringSample.ino
+++ b/examples/Multiple/MirroringSample/MirroringSample.ino
@@ -2,7 +2,7 @@
// using multiple controllers. In this example, we're going to set up four NEOPIXEL strips on four
// different pins, and show the same thing on all four of them, a simple bouncing dot/cyclon type pattern
-#include "FastLED.h"
+#include <FastLED.h>
#define NUM_LEDS_PER_STRIP 60
CRGB leds[NUM_LEDS_PER_STRIP];
diff --git a/examples/Multiple/MultiArrays/MultiArrays.ino b/examples/Multiple/MultiArrays/MultiArrays.ino
index a983d607..50241c39 100644
--- a/examples/Multiple/MultiArrays/MultiArrays.ino
+++ b/examples/Multiple/MultiArrays/MultiArrays.ino
@@ -2,7 +2,7 @@
// using multiple controllers. In this example, we're going to set up three NEOPIXEL strips on three
// different pins, each strip getting its own CRGB array to be played with
-#include "FastLED.h"
+#include <FastLED.h>
#define NUM_LEDS_PER_STRIP 60
CRGB redLeds[NUM_LEDS_PER_STRIP];
diff --git a/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino b/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino
index 35a6c6a3..15d58bcb 100644
--- a/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino
+++ b/examples/Multiple/MultipleStripsInOneArray/MultipleStripsInOneArray.ino
@@ -2,7 +2,7 @@
// using multiple controllers. In this example, we're going to set up four NEOPIXEL strips on three
// different pins, each strip will be referring to a different part of the single led array
-#include "FastLED.h"
+#include <FastLED.h>
#define NUM_STRIPS 3
#define NUM_LEDS_PER_STRIP 60
diff --git a/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino b/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino
index 6aad445d..d8d73fe2 100644
--- a/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino
+++ b/examples/Multiple/OctoWS2811Demo/OctoWS2811Demo.ino
@@ -1,6 +1,6 @@
#define USE_OCTOWS2811
-#include<OctoWS2811.h>
-#include<FastLED.h>
+#include <OctoWS2811.h>
+#include <FastLED.h>
#define NUM_LEDS_PER_STRIP 64
#define NUM_STRIPS 8
diff --git a/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino b/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino
index d646cdec..fc7c9e77 100644
--- a/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino
+++ b/examples/Multiple/ParallelOutputDemo/ParallelOutputDemo.ino
@@ -1,4 +1,4 @@
-#include<FastLED.h>
+#include <FastLED.h>
#define NUM_LEDS_PER_STRIP 64
// Note: this can be 12 if you're using a teensy 3 and don't mind soldering the pads on the back
diff --git a/examples/Noise/Noise.ino b/examples/Noise/Noise.ino
index c2a64752..e196e6bb 100644
--- a/examples/Noise/Noise.ino
+++ b/examples/Noise/Noise.ino
@@ -1,4 +1,4 @@
-#include<FastLED.h>
+#include <FastLED.h>
//
// Mark's xy coordinate mapping code. See the XYMatrix for more information on it.
diff --git a/examples/NoisePlusPalette/NoisePlusPalette.ino b/examples/NoisePlusPalette/NoisePlusPalette.ino
index 4e06bdd8..e95e4128 100644
--- a/examples/NoisePlusPalette/NoisePlusPalette.ino
+++ b/examples/NoisePlusPalette/NoisePlusPalette.ino
@@ -1,4 +1,4 @@
-#include<FastLED.h>
+#include <FastLED.h>
#define LED_PIN 3
#define BRIGHTNESS 96
diff --git a/examples/RGBCalibrate/RGBCalibrate.ino b/examples/RGBCalibrate/RGBCalibrate.ino
index 9f1c2369..8bc4b12b 100644
--- a/examples/RGBCalibrate/RGBCalibrate.ino
+++ b/examples/RGBCalibrate/RGBCalibrate.ino
@@ -1,4 +1,4 @@
-#include "FastLED.h"
+#include <FastLED.h>
////////////////////////////////////////////////////////////////////////////////////////////////////
diff --git a/examples/RGBSetDemo/RGBSetDemo.ino b/examples/RGBSetDemo/RGBSetDemo.ino
index 3b9ef24e..455fdccc 100644
--- a/examples/RGBSetDemo/RGBSetDemo.ino
+++ b/examples/RGBSetDemo/RGBSetDemo.ino
@@ -1,4 +1,4 @@
-#include<FastLED.h>
+#include <FastLED.h>
#define NUM_LEDS 40
CRGBArray<NUM_LEDS> leds;
diff --git a/examples/SmartMatrix/SmartMatrix.ino b/examples/SmartMatrix/SmartMatrix.ino
index 997b6d24..50bcb811 100644
--- a/examples/SmartMatrix/SmartMatrix.ino
+++ b/examples/SmartMatrix/SmartMatrix.ino
@@ -1,5 +1,5 @@
-#include<SmartMatrix.h>
-#include<FastLED.h>
+#include <SmartMatrix.h>
+#include <FastLED.h>
#define kMatrixWidth 32
#define kMatrixHeight 32