Hey guys, first time poster, I just got a set of ws2801 30mm leds, but am getting the error “Invalid pin specified” when trying to compile for Arduino Uno. I have the latest version of everything. I’m just using the demoreel100 example code. I had no problem getting my sets of ws2812b to work, and my only modifications from that file is to change the led type to WS2801 and uncomment the CLK_PIN. I’ve posted the pre-setup code below. Can someone tell me what I am missing? I got the Adafruit ws2801 library working no problem, but I really want to use fastLED. Thanks!
#include “FastLED.h”
FASTLED_USING_NAMESPACE
#if defined(FASTLED_VERSION) && (FASTLED_VERSION < 3001000)
#warning “Requires FastLED 3.1 or later; check github for latest code.”
#endif
#define DATA_PIN 9
#define CLK_PIN 4
#define LED_TYPE WS2801
#define COLOR_ORDER GRB
#define NUM_LEDS 20
CRGB leds[NUM_LEDS];
#define BRIGHTNESS 255
#define FRAMES_PER_SECOND 120