灯带接13脚位依次DOUT接DIN串下去
最多使用过60个灯珠的灯带
#include "FastLED.h"
#define NUM_LEDS 48 //灯珠数量
#define DATA_PIN 13 //引脚位置
#define LED_TYPE WS2812 // LED灯带型号
#define COLOR_ORDER GRB //灯带排序
uint8_t max_bright = 10; //灯带亮度
CRGB leds[NUM_LEDS]; // 建立光带
//灯带慢亮
void colorsoon(String colorgo){
for (int i = 0; i <= NUM_LEDS; i++) {
if(colorgo=="Red") leds[i] = CRGB::Red;
else if(colorgo