Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //#include <dummy.h>
- #include <FastLED.h>
- #include <Arduino.h>
- //#define FASTLED_ESP8266_RAW_PIN_ORDER
- #define ESP8266_RAW_PIN_ORDER
- #define LED_PIN 1
- // Information about the LED strip itself
- #define NUM_LEDS 50
- #define CHIPSET WS2811
- #define COLOR_ORDER BRG
- CRGB leds[NUM_LEDS];
- void setup() {
- pinMode(5,OUTPUT);
- delay(1000);
- fill_solid(leds,NUM_LEDS,CRGB(250,0,0));
- FastLED.show();
- //leds[0] = CRGB::White; FastLED.show(); delay(30);
- }
- void loop() {
- // put your main code here, to run repeatedly:
- }
Advertisement
Add Comment
Please, Sign In to add comment