Reply To: Program Change verus Sysex

Home Forums General Programming Program Change verus Sysex Reply To: Program Change verus Sysex

#13036
lfo2vco
Participant
    • Topics: 26
    • Replies: 162
    • Total: 188
    • ★★

    Haha, I am an idiot!

    I had the synth selected in MIDI Input, Controller & Output, thus was creating a right royal MIDI loop… so now all seems sorted.

    So I now have:

    if ret == 1 then
    	msb = 0xc0
    	lsb = 0x00
    elseif ret == 2 then
    	msb = 0xc0
    	lsb = 0x01
    end
    
    msb_lsb = CtrlrMidiMessage({msb, lsb})
    panel:sendMidiMessageNow(msb_lsb)
    
    DumpRequest = CtrlrMidiMessage({0xF0, 0x7F, 0x7F, 0x7F, 0x60, 0x01, 0x00, 0x03, 0xF7})
    panel:sendMidiMessageNow(DumpRequest)
    end
    

    This is part of the Popup Menu panel I am working on.

    Popup Menu Experiment


    I will put an attachment of the finished panel over there, it might help someone else try to do something similar.

    Cheers again Atom

    Here is some noise I organised into an acceptable format:
    https://soundcloud.com/lfo2vco/a-dark-crystal

    Ctrlr