Is there a way to place the values of desired brightness into an array thus controlling the brightness set by using strip.setBrightness ?
I would like to add the function of brightness up and down with an IR remote but when I setup the array like this "int BrightnessControl [] = {35,70,128,192};" and call it later;
case 0xFF3AC5:
Serial.println("Brightness Down");
BrightnessControl []--;
I get this error; error: expected primary-expression before ‘]’ token
What am I missing ?
.... many thanks for any/all comments !