I am progressing nicely on my proffie thermal detonator project, and I finally wired everything up tonight. Quite a tight fit.
Once I turned it on, I discovered my switch was wired in reverse, so I corrected that. It now seems to mostly be doing what it should, but I have 2 issues. The first is the middle led doesn’t light up. I am sure its wired correctly and not bad. I noticed the code on the hubbe.net web site defined the blade config is this
BladeConfig blades[] = {
{ 0,
SimpleBladePtr<CH1LED,CH2LED,CH3LED,NoLED, bladePowerPin1, bladePowerPin2, bladePowerPin3, -1>(),
SimpleBladePtr<CH1LED,NoLED,NoLED,NoLED, bladePowerPin4, -1, -1, -1>(),
CONFIGARRAY(presets) },
};
however the code I used (from the proffie os files) is this
BladeConfig blades[] = {
{ 0,
// Note, I use bladePowerPin5 instead of bladePowerPin2!
SimpleBladePtr<CH1LED,CH2LED,CH3LED,NoLED,
bladePowerPin1, bladePowerPin5, bladePowerPin3, -1>(),
SimpleBladePtr<CH1LED,NoLED,NoLED,NoLED,
bladePowerPin4, -1, -1, -1>(),
CONFIGARRAY(presets) },
};
So is bladePowerPin2
vs bladePowerPin5
an issue?
My 4 led’s are wired to proffie pads led1 thru led4.
My other issue is the sound font. I have ThermalD and I did the sound mods listed as well, so I have the font directory “tdmod” with 10 wav files. It seems like it should have more? Pressing the red button does nothing, and I never hear a boom or anything.