Hello all, hoping someone can help with this. I have a proffie 3.9 that I’ve set up with tri cree. I have the blue and green die wired together to LED2 and the white die wired to LED3. I would like for the blue/green die to be the main blade and have a flickering effect, and the white die to be the clash and blaster block. Right now, all three die turn on when the blade is activated, and are static (no shimmering or clash). Let me know if you see an issue with my config. Thanks for looking and may for the force be with you.
```
#ifdef CONFIG_TOP
#include “proffieboard_v3_config.h”
#define NUM_BLADES 1
#define NUM_BUTTONS 2
#define VOLUME 1000
const unsigned int maxLedsPerStrip = 144;
#define CLASH_THRESHOLD_G 1.0
#define ENABLE_AUDIO
#define ENABLE_MOTION
#define ENABLE_WS2811
#define ENABLE_SD
#endif
#ifdef CONFIG_PRESETS
Preset presets[] = {
{ “ATCW”, “tracks/venus.wav”,
StylePtr<InOutHelper<SimpleClash<Lockup<OriginalBlast<AudioFlicker<Rgb<0,150,255>,Blue>,White>,RandomFlicker<RandomFlicker<Rgb<0,150,255>,White>,Black>,AudioFlicker<Rgb<100,200,255>,Black>>,White,60>,500,800,Black>>(),
“sky blue”},
};
BladeConfig blades[] = {
{ 0, SimpleBladePtr<CreeXPE2BlueTemplate<240>, CreeXPE2BlueTemplate<240>, CreeXPE2WhiteTemplate<550>, NoLED, bladePowerPin1, bladePowerPin2, bladePowerPin3, -1>(), CONFIGARRAY(presets) },
};
#endif
#ifdef CONFIG_BUTTONS
Button PowerButton(BUTTON_POWER, powerButtonPin, “pow”);
Button AuxButton(BUTTON_AUX, auxPin, “aux”);
#endif
```