int x;
int cr;
int cg;
int cb;
int carryr;
int carryg;
int carryb;
int go = 1;
uint8_t colr[190];
uint8_t colg[190];
uint8_t colb[190];
#include <FastLED.h>

#define NUM_LEDS 189

#define DATA_PIN 3
#define CLOCK_PIN 13

CRGB leds[NUM_LEDS];

void setup() {
  FastLED.addLeds<WS2812B, DATA_PIN, RGB>(leds, NUM_LEDS);  // GRB ordering is typical
  Serial.begin(2000000);
}


void colorassign() {
  for (x = 0; x < 189; x++) {
    colr[x] = 0;
    colg[x] = 128;
    colb[x] = 0;
    leds[x].setRGB(colr[x],colg[x],colb[x]); // this command doesn't work either
    // leds[x] = CRGB(colr[x], colg[x], colb[x]);
  }
  // uncomment this chunk blow and it stops working. after assigning every led one color, I want to go back
  //and make every 25th led starting at 14 a different color(this would light up left corner of my led cube bottom to top), but it just stops working all together

  /*
    for(x=14;x<189;x+25){
    colr[x]=30;
    colg[x]=30;
    colb[x]=30;
    leds[x] = CRGB(colr[x],colg[x],colb[x]);
    }
  */
}


void loop() {
  if (go == 1) {
    go = 0;
    colorassign();
    FastLED.show();
    //FastLED.show();
    delay(1000);
  }
}
mega:SCL
mega:SDA
mega:AREF
mega:GND.1
mega:13
mega:12
mega:11
mega:10
mega:9
mega:8
mega:7
mega:6
mega:5
mega:4
mega:3
mega:2
mega:1
mega:0
mega:14
mega:15
mega:16
mega:17
mega:18
mega:19
mega:20
mega:21
mega:5V.1
mega:5V.2
mega:22
mega:23
mega:24
mega:25
mega:26
mega:27
mega:28
mega:29
mega:30
mega:31
mega:32
mega:33
mega:34
mega:35
mega:36
mega:37
mega:38
mega:39
mega:40
mega:41
mega:42
mega:43
mega:44
mega:45
mega:46
mega:47
mega:48
mega:49
mega:50
mega:51
mega:52
mega:53
mega:GND.4
mega:GND.5
mega:IOREF
mega:RESET
mega:3.3V
mega:5V
mega:GND.2
mega:GND.3
mega:VIN
mega:A0
mega:A1
mega:A2
mega:A3
mega:A4
mega:A5
mega:A6
mega:A7
mega:A8
mega:A9
mega:A10
mega:A11
mega:A12
mega:A13
mega:A14
mega:A15
neopixels:DOUT
neopixels:VDD
neopixels:VSS
neopixels:DIN
FPS: 0
Power: 0.00W