Hi, could somebody please tell me what the correct way of adding a Html v2 colour is please instead of red, to my piece of code here:
void loop() {
for(int dot = 0; dot < NUM_LEDS; dot++) {
leds[dot] = CRGB::Red;
FastLED.show();
// clear this led for the next time around the loop
leds[dot] = CRGB::Black;
delay(30);
}