Proffie V3 using Free Pins for Data?

I’m sure this is obvious, but somehow it’s passed me by…
If I want to use FreePin1 for data, am I right in saying all I need to do is reference blade5Pin in the blade array and that’s all? Like the config below? Or do I need to do anything else with the config to make it work?
Thanks as always. :slight_smile:

BladeConfig blades[] = {
 { 0,
//  Main Blade:
    WS281XBladePtr<132, bladePin, Color8::GRB, PowerPINS<bladePowerPin2, bladePowerPin3>>(),
//  Crystal Chamber:
    WS281XBladePtr<1, blade2Pin, Color8::GRB, PowerPINS<bladePowerPin4, bladePowerPin5>>(),
//  Side Strip:
    WS281XBladePtr<8, blade5Pin, Color8::GRB, PowerPINS<bladePowerPin4, bladePowerPin5>>(),
//  Speaker Accents:
    WS281XBladePtr<3, blade3Pin, Color8::GRB, PowerPINS<bladePowerPin4, bladePowerPin5>>(), 
    CONFIGARRAY(presets) },
};
#endif
1 Like

That’s all, that’d work

1 Like

Thanks Ryry. :pray:
That makes it nice and easy - just the way I like it. :slight_smile:

2 Likes