#include <FastLED.h>
//#include <SoftwareSerial.h> // for nextion
//#include <BluetoothSerial.h> // for hc05 

#define NUM_LEDS 4 + 4 +  7 * 1 * 22

#define LED_PIN             19    // WS2812

CRGB leds[NUM_LEDS]; // fastLED 


void setup() {
  // put your setup code here, to run once:
    FastLED.addLeds<NEOPIXEL, LED_PIN>(leds, NUM_LEDS);
    FastLED.setBrightness(51);
    FastLED.show();
    FastLED.clearData();

    for (int i=0; i<NUM_LEDS; i++)
       leds[i].setRGB(255,255,0);
     FastLED.show();
}


void loop() {
  
  
}