Launchpad question

Goseba

2013-01-22 12:24:23

I am just trying Bomes Midi Translator Pro demo in conjunction with a Launchpad.

So far I have been able to translate a Launchpad pad press successfully and also have the pad light up when pressed.

However, I am struggling to work out how I keep the pad lit until I press it again.

Can anyone give me any clues how to do this please?

DvlsAdvct

2013-01-23 08:43:54

Hi Goseba

To toggle LEDs on a controller you need to set rules in your translator.

Code: Select all

Translator 1: Button LED
Incoming Message: 90 00 pp
Rules: g0=g0+1
if g0>2 then g0=0
if g0==1 then pp=127
if g0==0 then pp=0
Outgoing Message: 90 00 pp
Hope that helps.

Jared

Goseba

2013-01-23 10:01:26

Many thanks for that. As soon as I get some time I'll give it a try. :)