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/Multiple
parentef49e12b3ef614009b3cb8cb5ff3eb1c73d2aa08 (diff)
Use consistent include syntax (#571)
- Angle brackets for external includes - Space after #include directive
Diffstat (limited to 'examples/Multiple')
-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
6 files changed, 7 insertions, 7 deletions
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