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>2016-04-30 22:33:31 +0300
committerDaniel Garcia <danielgarcia@gmail.com>2016-04-30 22:33:31 +0300
commit160becb01f0e2bc11d630adbb24e84020e8c6ec2 (patch)
treedb4fd6bbc449ce2e8fbb89d2a139c275f528551a
parent7069545c745c696617497fcb18c7c7764e924d42 (diff)
parent6fb59771b23df9f283845312d90bd83c252f7751 (diff)
Merge branch 'master' of https://github.com/FastLED/FastLED
-rw-r--r--FastLED.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/FastLED.h b/FastLED.h
index 91fd9438..38fc4b2e 100644
--- a/FastLED.h
+++ b/FastLED.h
@@ -169,7 +169,7 @@ public:
/// Add a CLEDController instance to the world. Exposed to the public to allow people to implement their own
/// CLEDController objects or instances. There are two ways to call this method (as well as the other addLeds)
/// variations. The first is with 3 arguments, in which case the arguments are the controller, a pointer to
- /// led data, and the number of leds used by this controller. The seocond is with 4 arguments, in which case
+ /// led data, and the number of leds used by this controller. The second is with 4 arguments, in which case
/// the first two arguments are the same, the third argument is an offset into the CRGB data where this controller's
/// CRGB data begins, and the fourth argument is the number of leds for this controller object.
/// @param pLed - the led controller being added
@@ -184,7 +184,7 @@ public:
/// Add an SPI based CLEDController instance to the world.
/// There are two ways to call this method (as well as the other addLeds)
/// variations. The first is with 2 arguments, in which case the arguments are a pointer to
- /// led data, and the number of leds used by this controller. The seocond is with 3 arguments, in which case
+ /// led data, and the number of leds used by this controller. The second is with 3 arguments, in which case
/// the first argument is the same, the second argument is an offset into the CRGB data where this controller's
/// CRGB data begins, and the third argument is the number of leds for this controller object.
///
@@ -260,7 +260,7 @@ public:
/// Add a clockless (aka 3wire, also DMX) based CLEDController instance to the world.
/// There are two ways to call this method (as well as the other addLeds)
/// variations. The first is with 2 arguments, in which case the arguments are a pointer to
- /// led data, and the number of leds used by this controller. The seocond is with 3 arguments, in which case
+ /// led data, and the number of leds used by this controller. The second is with 3 arguments, in which case
/// the first argument is the same, the second argument is an offset into the CRGB data where this controller's
/// CRGB data begins, and the third argument is the number of leds for this controller object.
///
@@ -308,7 +308,7 @@ public:
/// Add a 3rd party library based CLEDController instance to the world.
/// There are two ways to call this method (as well as the other addLeds)
/// variations. The first is with 2 arguments, in which case the arguments are a pointer to
- /// led data, and the number of leds used by this controller. The seocond is with 3 arguments, in which case
+ /// led data, and the number of leds used by this controller. The second is with 3 arguments, in which case
/// the first argument is the same, the second argument is an offset into the CRGB data where this controller's
/// CRGB data begins, and the third argument is the number of leds for this controller object. This class includes the SmartMatrix
/// and OctoWS2811 based controllers
@@ -370,7 +370,7 @@ public:
/// Add a block based CLEDController instance to the world.
/// There are two ways to call this method (as well as the other addLeds)
/// variations. The first is with 2 arguments, in which case the arguments are a pointer to
- /// led data, and the number of leds used by this controller. The seocond is with 3 arguments, in which case
+ /// led data, and the number of leds used by this controller. The second is with 3 arguments, in which case
/// the first argument is the same, the second argument is an offset into the CRGB data where this controller's
/// CRGB data begins, and the third argument is the number of leds for this controller object.
///
@@ -533,7 +533,7 @@ extern CFastLED FastLED;
// Warnings for undefined things
#ifndef HAS_HARDWARE_PIN_SUPPORT
-#warning "No pin/port mappings found, pin access will be slightly slower. See fastpin.h for info."
+#warning "No pin/port mappings found, pin access will be slightly slower. See fastpin.h for info."
#define NO_HARDWARE_PIN_SUPPORT
#endif