I'm not sure if this is possible, but my initial attempts didn't get me any results. If I wanted an LED to turn on when a loop was at 4, 8, or 16... or make it blink on 8, blinkfast on 16, is that possible?
I'd think that I could assign something to the LED like:
loop 4 & loop 8 blink & loop 16 blinkfast
But unfortunately it breaks it if I have more than one. I know the play button can both blink and light up solid depending on its mode, but that's also a special control that is implemented differently by the software.
I'd think that I could assign something to the LED like:
loop 4 & loop 8 blink & loop 16 blinkfast
But unfortunately it breaks it if I have more than one. I know the play button can both blink and light up solid depending on its mode, but that's also a special control that is implemented differently by the software.
Posted Thu 08 Oct 09 @ 2:46 pm
It's like this ...
loop 4 ? on : loop 8 ? blink : loop 16 ? blinkfast : off
If 4 then on else if 8 then blink else if 16 then blinkfast else off
loop 4 ? on : loop 8 ? blink : loop 16 ? blinkfast : off
If 4 then on else if 8 then blink else if 16 then blinkfast else off
Posted Thu 08 Oct 09 @ 2:53 pm
Ah - thanks. I kinda feel dumb for asking that, I guess I should have known better :)
Works perfectly now!
Works perfectly now!
Posted Thu 08 Oct 09 @ 2:57 pm
Supacon what were you mapping? The DDM4000?
Posted Fri 09 Oct 09 @ 5:15 pm
Nope, actually I was customizing CStoll's mapper for a pair of Stanton SCS.3d (DaScratch) controllers.
Posted Fri 09 Oct 09 @ 5:45 pm
O alright.
Posted Fri 09 Oct 09 @ 6:15 pm