Hello all,
I’m a newbie at programming proffieboards, this is my first attempt at coding lightsabers. I have accomplished the usual, read the manual, watched the uTube videos, etc. While compiling my first config file I ran into 5 problems. I managed to figure out the first four but the last one I just don’t see. I am sure it is something obvious that I just haven’t learned yet. Could someone please take a look at my attached config file and the error message and please explain to me where I went wrong? Your help is greatly appreciated!
dooku_config_ghb_v1.h (6.9 KB)
Arduino Error Msg.pdf (69.1 KB)
Once again, Thank you!
You did not grab the entire BladeConfig section from your previous config. You are missing the closing bracket and semicolon.
You entered:
BladeConfig blades[] = {
{ 0, WS281XBladePtr<133, bladePin, Color8::GRB, PowerPINS<bladePowerPin2, bladePowerPin3> >(),
CONFIGARRAY(presets) },
The complete BladeConfig should be:
BladeConfig blades[] = {
{ 0, WS281XBladePtr<133, bladePin, Color8::GRB, PowerPINS<bladePowerPin2, bladePowerPin3> >(),
CONFIGARRAY(presets) },
};
It is shown in the Example on the Config Tool right below where you input the BladeConfig. You also appear to have tried to edit the first preset, that doesn’t match the Tool’s output for syntax.
Thanks Fett, sure did not expect you to reply! I’ve watched many of your videos, it’s how I got this far. Knew it was something simple, just not what. Going to make the change and test it out. I will let you know how it works out! Greatly appreciated!
You’re welcome, you’re in the right place. This is the best place for Proffieboard support 
Fett, when I make the change I get even more problems…
Arduino 1.8.19 Error Msg 2 .txt (2.7 KB)
You made the change AND regenerated in the Config Tool? If not, then you have to go back and fix the other syntax issues. If you make that change in the Tool and regenerate a new config it should handle for you 
Ok, thank you. Let me work on that.
All working Fett, now to just fine tune what I want with all those features you have available! Thanks again!