This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef FASTDELEGATE_H | |
#define FASTDELEGATE_H | |
#include <cstring> | |
#include <type_traits> | |
#include <cassert> | |
#include <cstddef> | |
#include <memory> | |
#include <new> | |
#include <utility> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "FastLED.h" | |
#include <SPI.h> | |
#define NumPixels 1500 // number of LEDs in strip - count starts at 0, not 1 | |
#define Datapin 11 // datapin - green on apa102 | |
#define Clockpin 13 // clockpin - blue on apa102 | |
#define DataRate_Mhz 15 | |
CRGB leds[NumPixels]; | |
int g, r, b, z; | |
int head=-1, tail=(head-6); |