Compiler Error - 'Color' was not declared in this scope

phil007:
I'm getting the error 'Color' was not declared in this scope on the code below with c = Color(255,0,0); being highlighted. I'm trying to get the LPD8806 LED strips to run a color pattern from the center and I'm missing something that's preventing the code to compile.

Looks like Color is a member function of the object created. Just as you did with all the other member functions, you need to tell the compiler which object to call that function for.