Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@

#include <FastLED.h>

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

#define LED_PIN 12
#define NUM_LEDS 20
#define LED_TYPE WS2812B
Expand Down Expand Up @@ -372,5 +376,3 @@ void FillLEDsFromPaletteColors( uint8_t colorIndex)
colorIndex += STEPS;
}
}


4 changes: 4 additions & 0 deletions Ever_Burning_Flame_Painting/Ever_Burning_Flame_Painting.ino
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
#include <Adafruit_CircuitPlayground.h>
#include <FastLED.h> // add FastLED library AFTER Circuit Playground library to avoid issues

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

#define STRIP1_DATA_PIN 9 // define data pins for all 3 LED strips
#define STRIP2_DATA_PIN 12
#define STRIP3_DATA_PIN 6
Expand Down
4 changes: 4 additions & 0 deletions GemmaM0_Band_Jacket/DiscoBandCamp/DiscoBandCamp.ino
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@
#include "effects.h"
#include "buttons.h"

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

// list of Functions:
functionList effectList[] = {SolidRed, //all pixels solid red
swirly, //glittery swirly patterns
Expand Down
4 changes: 4 additions & 0 deletions Gemma_M0_NeoPixel_Dress/Gemma_M0_NeoPixel_Dress.ino
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
#include <Wire.h>
#include "Adafruit_TCS34725.h"

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

#define DATA_PIN 1
#define LED_TYPE WS2812B
#define COLOR_ORDER GRB
Expand Down
4 changes: 4 additions & 0 deletions Glowing_Beehive_Hairdo_Wig/Glowing_Beehive_Hairdo_Wig.ino
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
#include <Adafruit_CircuitPlayground.h> // add this before the FastLED library to avoid issues
#include <FastLED.h>

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

#define LED_PIN 6 //led strand is soldered to pin 6
#define CP_PIN 17 //circuit playground's neopixels live on pin 17
#define NUM_LEDS 12 // number of LEDs in my strand
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@
#include <Adafruit_NeoPixel.h>
#include <FastLED.h>

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

// Enable ONE of these lines to select an animation,
// others MUST be commented out!

Expand Down
4 changes: 4 additions & 0 deletions Jack_O_LED_trix/Jack_O_LED_trix.ino
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@
#include "colorutils.h"
#include "colorpalettes.h"

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

#define BRIGHTNESS 128

//Define the type of pixels you are using on the next line here.
Expand Down
4 changes: 4 additions & 0 deletions LED_Harness_Bra/LED_Harness_Bra.ino
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ Summary:
#include <FastLED.h>
#include <Adafruit_CircuitPlayground.h>

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

// Circuit Playground Setup----------------------------------------------------
#define CP_PIN 8 //CPX neopixels live on pin 8, CP live on pin 17
#define NUM_CP 10 //number of neopixels on the CP
Expand Down
4 changes: 4 additions & 0 deletions Neopixel_Aquarium/Neopixel_Aquarium.ino
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
#include "Adafruit_FreeTouch.h"
#include "FastLED.h"

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

#define CAPTOUCH_PIN A2 //A2 capacitive touch pin
#define CAPTOUCH_PIN2 A3 //A3 capacitive touch pin
#define NEOPIXEL_PIN A1 //A1 neopixel pin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@
//
#include "FastLED.h"

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

#define DATA_PIN SCL
#define LED_TYPE WS2812
#define COLOR_ORDER RBG // If colors are coming out wrong, re-order (RGB, BRG, etc)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
#include <Adafruit_CircuitPlayground.h>
#include <FastLED.h>

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

// tell FastLED all about the Circuit Playground's layout

#define DATA_PIN A1 //LED data on pin A1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

#include <FastLED.h>

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

#define LED_PIN 0
#define COLOR_ORDER GRB
#define CHIPSET WS2811
Expand Down Expand Up @@ -105,4 +109,4 @@ void Fire2012()
}
leds[pixelnumber] = color;
}
}
}
5 changes: 4 additions & 1 deletion UnicornHorn_CapacitiveTouch/UnicornHorn_CapacitiveTouch.ino
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
#include "Adafruit_FreeTouch.h"
#include "FastLED.h"

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

#define CAPTOUCH_PIN A1
#define NEOPIXEL_PIN 1
#define LED_PIN 0
Expand Down Expand Up @@ -97,4 +101,3 @@ void dark()
delay(20);
}
}

5 changes: 4 additions & 1 deletion color_touch_pendant/color_touch_pendant.ino
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
#include "Adafruit_FreeTouch.h"
#include "FastLED.h"

#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

#define CAPTOUCH_PIN 0 //capacitive touch pin
#define NEOPIXEL_PIN 1 //neopixel ring pin
#define NUM_LEDS 28 //how many pixels total
Expand Down Expand Up @@ -140,4 +144,3 @@ void dark()
delay(20);
}
}

2 changes: 1 addition & 1 deletion library.deps
Original file line number Diff line number Diff line change
@@ -1 +1 @@
depends=Adafruit SSD1305, Adafruit ILI9341, Adafruit BusIO, SD, Adafruit NeoPixel, Adafruit VS1053 Library, Adafruit BluefruitLE nRF51, Adafruit seesaw Library, Ethernet, Stepper, Adafruit IO Arduino, FastLED, Adafruit LiquidCrystal, Adafruit SoftServo, TinyWireM, Adafruit AM radio library, WaveHC, Adafruit LED Backpack Library, MAX31850 OneWire, Adafruit VC0706 Serial Camera Library, RTClib, Adafruit SleepyDog Library, Adafruit Thermal Printer Library, Adafruit Zero I2S Library, Adafruit EPD, Adafruit SSD1351 library, Adafruit FONA Library, Adafruit Motor Shield V2 Library, Adafruit NeoMatrix, Adafruit Soundboard library, Adafruit Circuit Playground, ArduinoJson, Adafruit TCS34725, Adafruit Pixie, Adafruit GPS Library, TinyGPS, WiFi101, Adafruit DotStar, Adafruit Si7021 Library, Adafruit WS2801 Library, Mouse, Keyboard, Time, IRremote, Adafruit LSM9DS0 Library, Adafruit Arcada Library, MIDIUSB, PubSubClient, Adafruit LIS2MDL, Adafruit NeoPXL8, Adafruit MCP23017 Arduino Library, Adafruit MLX90640, LiquidCrystal, Adafruit NeoTrellis M4 Library, RGB matrix Panel, Adafruit MLX90614 Library, Adafruit RGB LCD Shield Library, MAX6675 library, Adafruit MP3, Adafruit Keypad, Adafruit Arcada GifDecoder, Keypad, Neosegment, Encoder, Adafruit TiCoServo, Adafruit Trellis Library, FauxmoESP, Adafruit LSM303 Accel, Adafruit LSM303DLH Mag, Adafruit LSM303DLHC, CapacitiveSensor, Adafruit Zero PDM Library, Adafruit DMA neopixel library, elapsedMillis, DST RTC, Adafruit SHARP Memory Display, Adafruit SPIFlash, BSEC Software Library, WiiChuck, Adafruit DPS310, Adafruit AHTX0, RotaryEncoder, Adafruit MCP9808 Library, LSM303, Adafruit Protomatter, Adafruit IS31FL3741 Library, Sensirion I2C SCD4x, Adafruit TestBed, Bounce2, Adafruit AHRS, Adafruit DRV2605 Library, STM32duino VL53L4CD, PicoDVI - Adafruit Fork, Adafruit MMA8451 Library, Adafruit TSC2007, GFX Library for Arduino, Adafruit PyCamera Library, Adafruit ADG72x, Adafruit BNO055, Adafruit SHT4x Library, Adafruit VCNL4200 Library, Adafruit GC9A01A, Adafruit DVI HSTX, Adafruit TLV320 I2S
depends=Adafruit SSD1305, Adafruit ILI9341, Adafruit BusIO, SD, Adafruit NeoPixel, Adafruit VS1053 Library, Adafruit BluefruitLE nRF51, Adafruit seesaw Library, Ethernet, Stepper, Adafruit IO Arduino, [email protected], Adafruit LiquidCrystal, Adafruit SoftServo, TinyWireM, Adafruit AM radio library, WaveHC, Adafruit LED Backpack Library, MAX31850 OneWire, Adafruit VC0706 Serial Camera Library, RTClib, Adafruit SleepyDog Library, Adafruit Thermal Printer Library, Adafruit Zero I2S Library, Adafruit EPD, Adafruit SSD1351 library, Adafruit FONA Library, Adafruit Motor Shield V2 Library, Adafruit NeoMatrix, Adafruit Soundboard library, Adafruit Circuit Playground, ArduinoJson, Adafruit TCS34725, Adafruit Pixie, Adafruit GPS Library, TinyGPS, WiFi101, Adafruit DotStar, Adafruit Si7021 Library, Adafruit WS2801 Library, Mouse, Keyboard, Time, IRremote, Adafruit LSM9DS0 Library, Adafruit Arcada Library, MIDIUSB, PubSubClient, Adafruit LIS2MDL, Adafruit NeoPXL8, Adafruit MCP23017 Arduino Library, Adafruit MLX90640, LiquidCrystal, Adafruit NeoTrellis M4 Library, RGB matrix Panel, Adafruit MLX90614 Library, Adafruit RGB LCD Shield Library, MAX6675 library, Adafruit MP3, Adafruit Keypad, Adafruit Arcada GifDecoder, Keypad, Neosegment, Encoder, Adafruit TiCoServo, Adafruit Trellis Library, FauxmoESP, Adafruit LSM303 Accel, Adafruit LSM303DLH Mag, Adafruit LSM303DLHC, CapacitiveSensor, Adafruit Zero PDM Library, Adafruit DMA neopixel library, elapsedMillis, DST RTC, Adafruit SHARP Memory Display, Adafruit SPIFlash, BSEC Software Library, WiiChuck, Adafruit DPS310, Adafruit AHTX0, RotaryEncoder, Adafruit MCP9808 Library, LSM303, Adafruit Protomatter, Adafruit IS31FL3741 Library, Sensirion I2C SCD4x, Adafruit TestBed, Bounce2, Adafruit AHRS, Adafruit DRV2605 Library, STM32duino VL53L4CD, PicoDVI - Adafruit Fork, Adafruit MMA8451 Library, Adafruit TSC2007, GFX Library for Arduino, Adafruit PyCamera Library, Adafruit ADG72x, Adafruit BNO055, Adafruit SHT4x Library, Adafruit VCNL4200 Library, Adafruit GC9A01A, Adafruit DVI HSTX, Adafruit TLV320 I2S
7 changes: 3 additions & 4 deletions simple_strand_palettes/simple_strand_palettes.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
//
// SPDX-License-Identifier: MIT


#include "FastLED.h"

// ColorWavesWithPalettes
Expand All @@ -16,9 +15,9 @@
// http://fastled.io/tools/paletteknife/
//

//#if FASTLED_VERSION < 3001000
//#error "Requires FastLED 3.1 or later; check github for latest code."
//#endif
#if defined(FASTLED_VERSION) && FASTLED_VERSION > 3010001
#error "FastLED 3.10.2 has known compile issues with SAMD boards. Please downgrade to FastLED 3.10.1"
#endif

#define DATA_PIN 6
#define LED_TYPE WS2812B
Expand Down
Loading