Lightfactory MIDI Control

Forums Forums Qu Forums Qu DAW integration Lightfactory MIDI Control

Tagged: 

This topic contains 1 reply, has 2 voices, and was last updated by Profile photo of KeithJ A&H KeithJ A&H 1 year, 1 month ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #111764
    Profile photo of Lightguy
    Lightguy
    Participant

    My lighting software can send MIDI signals, but it requires me to send it in a very specific syntax. Here is an example from the user manual: Noteon 20 127
    I’m noticing that the qu mixer is expecting only numbers in the MIDI command. What can I do to bridge the gap between the two syntax requirements?

    #111771
    Profile photo of KeithJ A&H
    KeithJ A&H
    Moderator

    Hi @Lightguy

    A MIDI note-on message is formed as
    note on | note | velocity
    The syntax for this is the same whether you represent it in binary, decimal, hex or something else.

    It looks like your software is representing the first byte with text and is then using decimal values.
    Whereas our MIDI protocol documentation shows messages in hex.

    So for the example you’ve put here, you would need to look up what Noteon is as a byte and convert the other two values to hex.
    Presuming ‘Noteon’ is a standard MIDI note-on message, that gives:
    Noteon 20 127 = 0x90 0x14 0x7F

    Hope this helps,
    Keith.

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.