Page 11 of 16

Re: Cross MIDI output mapping

PostPosted: 14 Jun 2013, 12:24
by Hannes
a crap ^^
btw is this xml stuff as nasty as python when it comes to tabs and formatting?

FO!!! xml-beautifier: this document cannot be processed... AAAHHH!!

Re: Cross MIDI output mapping

PostPosted: 26 Jun 2013, 11:46
by Hannes
Almost there, which out do I use to indicate a pad is playing, and will it conflict with padloaded?

Re: Cross MIDI output mapping

PostPosted: 05 Jul 2013, 01:01
by discopex
Is there a simple permanent NOTE ON command ? I need to revise my mapping for 2.50RC as my trickery with notes works no more. :twisted:

Re: Cross MIDI output mapping

PostPosted: 05 Jul 2013, 01:59
by FigDJ
discopex wrote:Is there a simple permanent NOTE ON command ? I need to revise my mapping for 2.50RC as my trickery with notes works no more. :twisted:


I am with you discopex.
Would it be possible to get an updated list of MIDI map commands for input and output
Also an example for the format used on the following features stated on the RC release.
- Provide MIDI-macros mappings, allowing multiple simultaneous commands behind a single control.
- Allow mapping of shifted MIDI-outs.

I know it is just RC so I am testing.

Re: Cross MIDI output mapping

PostPosted: 05 Jul 2013, 10:17
by sylMV
discopex wrote:Is there a simple permanent NOTE ON command ? I need to revise my mapping for 2.50RC as my trickery with notes works no more. :twisted:


What do you mean? What doesn't work anymore?

Re: Cross MIDI output mapping

PostPosted: 05 Jul 2013, 10:36
by discopex
sylMV wrote:
discopex wrote:Is there a simple permanent NOTE ON command ? I need to revise my mapping for 2.50RC as my trickery with notes works no more. :twisted:


What do you mean? What doesn't work anymore?


As I didn't know how to light up certain pads, I set the mapping to have note on depending on key lock state - the note was on whether the state was true or false. In 2.5RC they do not light up anymore, I'm thinking there are changes to keylock state with the new key functions. Is there a simple way to just output a note that would then stay on permanently?

Re: Cross MIDI output mapping

PostPosted: 05 Jul 2013, 11:28
by sylMV
discopex wrote:As I didn't know how to light up certain pads, I set the mapping to have note on depending on key lock state - the note was on whether the state was true or false

I don't get this...

discopex wrote: In 2.5RC they do not light up anymore, I'm thinking there are changes to keylock state with the new key functions.


It you programmed some leds depending on the key lock state, they should always go on/off depending on this state!
I doubt there might be a bug in Cross concerning this state, but we need to check it.

discopex wrote:Is there a simple way to just output a note that would then stay on permanently?

Basically, you want to light up some leds at startup and never switch them off?

Re: Cross MIDI output mapping

PostPosted: 05 Jul 2013, 12:18
by discopex
sylMV wrote:
discopex wrote:As I didn't know how to light up certain pads, I set the mapping to have note on depending on key lock state - the note was on whether the state was true or false

I don't get this...

discopex wrote: In 2.5RC they do not light up anymore, I'm thinking there are changes to keylock state with the new key functions.


It you programmed some leds depending on the key lock state, they should always go on/off depending on this state!
I doubt there might be a bug in Cross concerning this state, but we need to check it.

discopex wrote:Is there a simple way to just output a note that would then stay on permanently?

Basically, you want to light up some leds at startup and never switch them off?


Exactly, to see them better in the dark ! some leds have their beatflash or some other function so it would be dull for the others to remain unlit (grey). Just need a way to output note state to them constantly. ;)

Re: Cross MIDI output mapping

PostPosted: 05 Jul 2013, 13:30
by sylMV
Then you can use the 'Startup' (turn on) and 'Shutdown' (turn off) device-events.

Code: Select all
<output-mappings>
  <device-event name="Startup">
    .... All your MIDI messages here ...
  </device-event>
  <device-event name="Shutdown">
    .... All your MIDI messages here ...
  </device-event>
...
... The rest of your out mappings. ...
...
</output-mappings>

Re: Cross MIDI output mapping

PostPosted: 05 Jul 2013, 13:37
by discopex
I remember trying that but it wouldn't do the trick for some reason (might be controller dependant, Quneo in this case). But I'll revisit this function. ;)