I'm working on an Arduino controlled Christmas tree with 500 fully addressable LEDs. I'm using the FastLED library and currently(though I'll be updating some of the animations to be controlled by sampling audio) I'm using the code from http://pastebin.com/Qe0Jttme as a starting point.
The following line: (line #36 in pastebin example)
const PROGMEM prog_uint16_t levels[NUM_LEVELS] = {58, 108, 149, 187, 224, 264, 292, 309, 321, 327, 336, 348};
Is giving me the error:
exit status 1
'prog_uint16_t' does not name a type
This is because it had been depreciated. I found an alternative here, but now the following line errors due to depreciation as well, but I don't know how to get past it.
const PROGMEM prog_uchar ledCharSet[20] = {
B00111111,B00000110,B01011011,B01001111,B01100110,B01101101,B01111101,B00000111,B01111111,B01101111,
B10111111,B10000110,B11011011,B11001111,B11100110,B11101101,B11111101,B10000111,B11111111,B11101111
};
Returns the same error:
exit status 1
'prog_uchar' does not name a type
I'm using Arduino version 1.6.6 and the latest FastLED library.