Re: Cross MIDI output mapping

had tried that solution. works, however, the two LEDs blink in sync, but the first one after the other ...
Closed forum. You can only use it as a source of information about MixVibes software
http://forum.mixvibes.com/
matrix90 wrote:okay. but a complete guide of how to map the LEDs do not exist?
Support@MixVibes wrote:
- Code: Select all
<mapping>
<control alias="fam(Fx)[0x1].Select" value="X"/>
<MIDI loop="true"/>
<MIDI type="Note" parameter="0xa" channel="0x1" value="127" duration="500"/>
<MIDI type="Note" parameter="0xa" channel="0x1" value="0" duration="500"/>
</mapping>
Should cycle/blink the led 0xa when the value X is received from the fam(Fx)[0x1].Select command.
djphaidon wrote:Is there any way to check other parameters inside a mapping, like checking for modifier 1, and if true, output a light, if not, don't?
<mapping>
<control alias="mod(ShiftLogic1)" value="true"/>
<MIDI type="Note" parameter="0x1b" channel="0x1" value="127"/>
</mapping>
<mapping>
<control alias="mod(ShiftLogic1)" value="false"/>
<MIDI type="Note" parameter="0x1b" channel="0x1" value="0"/>
</mapping>