Skip to content
Open
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
2 changes: 1 addition & 1 deletion AntsMode.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <Arduino.h>
#include "FastSPI_LED2.h"
#include <FastLED.h>

#define ANTS_COUNT 8
struct ant_data{
Expand Down
2 changes: 1 addition & 1 deletion CalibrateMode.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <Arduino.h>
#include "FastSPI_LED2.h"
#include <FastLED.h>

class CalibrateMode{
private:
Expand Down
2 changes: 1 addition & 1 deletion EiffelMode.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <Arduino.h>
#include "FastSPI_LED2.h"
#include <FastLED.h>

class EiffelMode
{
Expand Down
2 changes: 1 addition & 1 deletion IceCrystalsMode.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <Arduino.h>
#include "FastSPI_LED2.h"
#include <FastLED.h>

#define ICE_COUNT 10

Expand Down
6 changes: 3 additions & 3 deletions MashedPixels.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "FastSPI_LED2.h"
#include <FastLED.h>
#include <Wire.h>
#include <EEPROM.h>

Expand Down Expand Up @@ -144,11 +144,11 @@ 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);
FastLED.addLeds<NEOPIXEL, DATA_PIN, RGB>(leds, NUM_LEDS);
// FastLED.addLeds<NEOPIXEL, DATA_PIN, RGB>(leds, NUM_LEDS);
// FastLED.addLeds<WS2812, DATA_PIN, RGB>(leds, NUM_LEDS);
// FastLED.addLeds<WS2812B, DATA_PIN, RGB>(leds, NUM_LEDS);
// FastLED.addLeds<UCS1903, DATA_PIN, RGB>(leds, NUM_LEDS);
// FastLED.addLeds<WS2811, DATA_PIN, GRB>(leds, NUM_LEDS);
FastLED.addLeds<WS2811, DATA_PIN, GRB>(leds, NUM_LEDS);
// FastLED.addLeds<WS2801, RGB>(leds, NUM_LEDS);
// FastLED.addLeds<SM16716, RGB>(leds, NUM_LEDS);
// FastLED.addLeds<LPD8806, RGB>(leds, NUM_LEDS);
Expand Down
2 changes: 1 addition & 1 deletion MathieuMode.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <Arduino.h>
#include "FastSPI_LED2.h"
#include <FastLED.h>

class MathieuMode
{
Expand Down
2 changes: 1 addition & 1 deletion RedWaveMode.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <Arduino.h>
#include "FastSPI_LED2.h"
#include <FastLED.h>

class RedWaveMode
{
Expand Down
2 changes: 1 addition & 1 deletion TraditionalMode.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include <Arduino.h>
#include "FastSPI_LED2.h"
#include <FastLED.h>

class TraditionalMode{
private:
Expand Down