Reply To: Need help with complex MIDI CC Expression

Home Forums General Programming Need help with complex MIDI CC Expression Reply To: Need help with complex MIDI CC Expression

#45311
dasfaker
Keymaster
    • Topics: 80
    • Replies: 793
    • Total: 873
    • ★★★

    You can write it this way too.

    
    ch = panel:getPropertyInt("panelMidiOutputDevice")
    m = CtrlrMidiMessage({176 + ch, 0x6e, 0x02}) -- 176 == b0
    panel:sendMidiMessageNow(m)
    Ctrlr