I have 8 pro micro boards. When I hook them to the computer all is good. As soon as I load a simple Arduino sketch to the board it stop and I get Unknown USB Device (Device Descriptor Request Failed) This is on 3 different computers with 3 different cables. I can short the RST and Ground pins and it shows up for about 10 seconds then back to the same message. These were all brand new never used boards. This is the first sketch put on them. This is the simple sketch.
#include <FastLED.h>
#define LED_PIN 6
#define NUM_LEDS 10
#define BRIGHTNESS 100
#define LED_TYPE WS2812B
#define COLOR_ORDER GRB
CRGB leds[NUM_LEDS];
void setup() {
FastLED.addLeds<LED_TYPE, LED_PIN, COLOR_ORDER>(leds, NUM_LEDS);
FastLED.setBrightness(BRIGHTNESS);
}
void loop() {
// Chase red LED
for (int i = 0; i < NUM_LEDS; i++) {
fill_solid(leds, NUM_LEDS, CRGB::Black);
leds\[i\] = CRGB::Red;
FastLED.show();
delay(200);
}
// All Green
fill_solid(leds, NUM_LEDS, CRGB::Green);
FastLED.show();
delay(1000);
// All Blue
fill_solid(leds, NUM_LEDS, CRGB::Blue);
FastLED.show();
delay(1000);
// Off
fill_solid(leds, NUM_LEDS, CRGB::Black);
FastLED.show();
delay(500);
}
I am building a cockpit and it uses these boards all over like in 25 of them. This just started a couple of days ago. Any help would be much appreciated.