Daniel thank you so much for the help! I think I am much farther along now! I had seen that advice but didn’t realize the github version would be different. So I get a different error now:
no matching function for call to ‘CFastLED::addLeds(CRGB [1], int)’
FastLED.addLeds<P9813, RGB>(leds, NUM_LEDS);"
I’m guessing is because I didn’t update the library correctly. I went to GitHub - FastLED/FastLED: The FastLED library for colored LED animation on Arduino. Please direct questions/requests for help to the FastLED Reddit community: http://fastled.io/r We'd like to use github "issues" just for tracking library bugs / enhancements. and downloaded Zip from the Clone or download menu. It opened as FastLED-master, I renamed it to FastLED after deleting the old folder (I also tried leaving it as FastLED-master) and copied into my Arduino/libraries folder. Either way, I got the same error, it seems to me that the new library might not have the command?
Reverting to the download from http://fastled.io changes the error back to the original message.
for good measure I’ll copy in the entire error message im getting with the new library:
n file included from /Users/NoobCake/Documents/Arduino/LED controller/Blink_With_Help/Blink_With_Help.ino:3:0:
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:17:21: note: #pragma message: FastLED version 3.001.001
pragma message “FastLED version 3.001.001”
^
In file included from /Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:65:0,
from /Users/NoobCake/Documents/Arduino/LED controller/Blink_With_Help/Blink_With_Help.ino:3:
/Users/NoobCake/Documents/Arduino/libraries/FastLED/fastspi.h:110:23: note: #pragma message: No hardware SPI pins defined. All SPI access will default to bitbanged output
pragma message “No hardware SPI pins defined. All SPI access will default to bitbanged output”
^
/Users/NoobCake/Documents/Arduino/LED controller/Blink_With_Help/Blink_With_Help.ino: In function ‘void setup()’:
Blink_With_Help:15: error: no matching function for call to ‘CFastLED::addLeds(CRGB [1], int)’
FastLED.addLeds<P9813, RGB>(leds, NUM_LEDS);
^
/Users/NoobCake/Documents/Arduino/LED controller/Blink_With_Help/Blink_With_Help.ino:15:50: note: candidates are:
In file included from /Users/NoobCake/Documents/Arduino/LED controller/Blink_With_Help/Blink_With_Help.ino:3:0:
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:211:129: note: template<ESPIChipsets CHIPSET, unsigned char DATA_PIN, unsigned char CLOCK_PIN, EOrder RGB_ORDER, unsigned char SPI_DATA_RATE> CLEDController& CFastLED::addLeds(CRGB*, int, int)
template<ESPIChipsets CHIPSET, uint8_t DATA_PIN, uint8_t CLOCK_PIN, EOrder RGB_ORDER, uint8_t SPI_DATA_RATE > CLEDController &addLeds(struct CRGB data, int nLedsOrOffset, int nLedsIfOffset = 0) {
^
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:211:129: note: template argument deduction/substitution failed:
/Users/NoobCake/Documents/Arduino/LED controller/Blink_With_Help/Blink_With_Help.ino:15:50: note: couldn’t deduce template parameter ‘CLOCK_PIN’
FastLED.addLeds<P9813, RGB>(leds, NUM_LEDS);
^
In file included from /Users/NoobCake/Documents/Arduino/LED controller/Blink_With_Help/Blink_With_Help.ino:3:0:
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:224:95: note: template<ESPIChipsets CHIPSET, unsigned char DATA_PIN, unsigned char CLOCK_PIN> static CLEDController& CFastLED::addLeds(CRGB, int, int)
template<ESPIChipsets CHIPSET, uint8_t DATA_PIN, uint8_t CLOCK_PIN > static CLEDController &addLeds(struct CRGB data, int nLedsOrOffset, int nLedsIfOffset = 0) {
^
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:224:95: note: template argument deduction/substitution failed:
/Users/NoobCake/Documents/Arduino/LED controller/Blink_With_Help/Blink_With_Help.ino:15:50: note: couldn’t deduce template parameter ‘CLOCK_PIN’
FastLED.addLeds<P9813, RGB>(leds, NUM_LEDS);
^
In file included from /Users/NoobCake/Documents/Arduino/LED controller/Blink_With_Help/Blink_With_Help.ino:3:0:
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:237:113: note: template<ESPIChipsets CHIPSET, unsigned char DATA_PIN, unsigned char CLOCK_PIN, EOrder RGB_ORDER> static CLEDController& CFastLED::addLeds(CRGB, int, int)
template<ESPIChipsets CHIPSET, uint8_t DATA_PIN, uint8_t CLOCK_PIN, EOrder RGB_ORDER > static CLEDController &addLeds(struct CRGB data, int nLedsOrOffset, int nLedsIfOffset = 0) {
^
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:237:113: note: template argument deduction/substitution failed:
/Users/NoobCake/Documents/Arduino/LED controller/Blink_With_Help/Blink_With_Help.ino:15:50: note: couldn’t deduce template parameter ‘CLOCK_PIN’
FastLED.addLeds<P9813, RGB>(leds, NUM_LEDS);
^
In file included from /Users/NoobCake/Documents/Arduino/LED controller/Blink_With_Help/Blink_With_Help.ino:3:0:
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:286:25: note: template<template<unsigned char DATA_PIN, EOrder RGB_ORDER> class CHIPSET, unsigned char DATA_PIN, EOrder RGB_ORDER> static CLEDController& CFastLED::addLeds(CRGB, int, int)
static CLEDController &addLeds(struct CRGB data, int nLedsOrOffset, int nLedsIfOffset = 0) {
^
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:286:25: note: template argument deduction/substitution failed:
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:292:25: note: template<template<unsigned char DATA_PIN, EOrder RGB_ORDER> class CHIPSET, unsigned char DATA_PIN> static CLEDController& CFastLED::addLeds(CRGB, int, int)
static CLEDController &addLeds(struct CRGB data, int nLedsOrOffset, int nLedsIfOffset = 0) {
^
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:292:25: note: template argument deduction/substitution failed:
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:298:25: note: template<template class CHIPSET, unsigned char DATA_PIN> static CLEDController& CFastLED::addLeds(CRGB, int, int)
static CLEDController &addLeds(struct CRGB data, int nLedsOrOffset, int nLedsIfOffset = 0) {
^
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:298:25: note: template argument deduction/substitution failed:
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:334:25: note: template<template class CHIPSET, EOrder RGB_ORDER> static CLEDController& CFastLED::addLeds(CRGB, int, int)
static CLEDController &addLeds(struct CRGB data, int nLedsOrOffset, int nLedsIfOffset = 0) {
^
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:334:25: note: template argument deduction/substitution failed:
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:340:25: note: template<template class CHIPSET> static CLEDController& CFastLED::addLeds(CRGB, int, int)
static CLEDController &addLeds(struct CRGB *data, int nLedsOrOffset, int nLedsIfOffset = 0) {
^
/Users/NoobCake/Documents/Arduino/libraries/FastLED/FastLED.h:340:25: note: template argument deduction/substitution failed:
Blink_With_Help:15: error: wrong number of template arguments (2, should be 1)
FastLED.addLeds<P9813, RGB>(leds, NUM_LEDS);
^
exit status 1
no matching function for call to ‘CFastLED::addLeds(CRGB [1], int)’