The outputs light behavior will follow the software GUI, they can't do more.
Your conditional (less than 100% + MT not engaged) can't work.
You can have the led light when pitch range <>100% and an other when MT is off.
Pitch range is an integer, not a logic, so no true/false argument in there only value like 0; 1; 2; 3...to 5 (4%/6%...100%)
For lighting when not in Maste tempo, something like this should work :
- Code: Select all
<mapping>
<control alias="fam(Player)[0x1].KeyLockOutput" value="false"/>
<MIDI type="Note" parameter="0x9" channel="0xd" value="127"/>
</mapping>
<mapping>
<control alias="fam(Player)[0x1].KeyLockOutput" value="true"/>
<MIDI type="Note" parameter="0x9" channel="0xd" value="0"/>
</mapping>
Light is on when MT is off, light is off when MT is on.