u/Cold-Programmer262

Midi Captain 10 Gold FW 4.0 - Bank Change Limitation

Hi All,

I have Midi Captain Gold 10 which I use in Supermode to control a PodXt. The bank change keys (key4 and key9) only access 31 Banks not 32 which are available on the PodXt. 

Is this a limitation in the Midi Captain?

reddit.com
u/Cold-Programmer262 — 11 days ago

Midi Captain 10 Gold FW 4.0 - Single Key Toggling Problem

Hi All,

I am having difficulty implementing an independent toggle using long and short press on a single switch in Supermode.

I have attached the code below. The problem is that the long and short actions interact and interfere with the toggling action.

For example:

A short sends cc value 127 (Delay on)

A long sends cc value 127 (Reverb on)

Next Short should send cc 0 to turn off Delay but it sends cc value 127 again.

The same happens with long toggle sequence.

I can see that keytimes might cause this behaviour.

Can anyone tell me how to achieve the desired independent toggle action?
Is is possible in Supermode

"page0 code snippet"

# Short Press: Toggles Sht CC 28 + Lg CC 36(Delay + Reverb)

[key3]

keytimes = [2]

ledmode = [normal]

ledcolor1 = [0x00ff00][0x00ff00][0x00ff00]

ledcolor2 = [0x666666][0x666666][0x666666]

# DELAY1 ON/OFF

short_up1 = [1][CC][28][127]

short_up2 = [1][CC][28][0]

# REVERB ON/OFF

long_up1 = [1][CC][36][127]

long_up2 = [1][CC][36][0]

reddit.com
u/Cold-Programmer262 — 11 days ago