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:
Diffstat (limited to 'examples')
-rw-r--r--examples/Fast2Dev/Fast2Dev.ino2
-rw-r--r--examples/FirstLight/FirstLight.ino4
-rw-r--r--examples/RGBCalibrate/RGBCalibrate.ino4
3 files changed, 5 insertions, 5 deletions
diff --git a/examples/Fast2Dev/Fast2Dev.ino b/examples/Fast2Dev/Fast2Dev.ino
index 3e5cca73..5090aaad 100644
--- a/examples/Fast2Dev/Fast2Dev.ino
+++ b/examples/Fast2Dev/Fast2Dev.ino
@@ -7,7 +7,7 @@
// Uncomment this line if you want to talk to DMX controllers
// #define FASTSPI_USE_DMX_SIMPLE 1
-#include "FastSPI_LED2.h"
+#include "FastLED.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
diff --git a/examples/FirstLight/FirstLight.ino b/examples/FirstLight/FirstLight.ino
index eb9a3c8f..fcfbacbd 100644
--- a/examples/FirstLight/FirstLight.ino
+++ b/examples/FirstLight/FirstLight.ino
@@ -1,6 +1,6 @@
#define FORCE_SOFTWARE_SPI
#define FORCE_SOFTWARE_PINS
-#include "FastSPI_LED2.h"
+#include "FastLED.h"
///////////////////////////////////////////////////////////////////////////////////////////
//
@@ -29,7 +29,7 @@ void setup() {
// FastLED.addLeds<TM1803, DATA_PIN, RGB>(leds, NUM_LEDS);
// FastLED.addLeds<TM1804, DATA_PIN, RGB>(leds, NUM_LEDS);
// FastLED.addLeds<TM1809, DATA_PIN, RGB>(leds, NUM_LEDS);
- // FastSPI_LED2.addLeds<WS2811, DATA_PIN, GRB>(leds+18, NUM_LEDS/3);
+ // FastLED.addLeds<WS2811, DATA_PIN, GRB>(leds+18, NUM_LEDS/3);
// FastLED.addLeds<WS2811, 8, RGB>(leds + 225, NUM_LEDS/4);
// FastLED.addLeds<WS2812, DATA_PIN, RGB>(leds, NUM_LEDS);
// FastLED.addLeds<WS2812B, DATA_PIN, RGB>(leds, NUM_LEDS);
diff --git a/examples/RGBCalibrate/RGBCalibrate.ino b/examples/RGBCalibrate/RGBCalibrate.ino
index 9e6b564d..55661052 100644
--- a/examples/RGBCalibrate/RGBCalibrate.ino
+++ b/examples/RGBCalibrate/RGBCalibrate.ino
@@ -1,4 +1,4 @@
-#include "FastSPI_LED2.h"
+#include "FastLED.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -63,4 +63,4 @@ void loop() {
leds[5] = CRGB::Blue;
FastLED.show();
delay(1000);
-} \ No newline at end of file
+}