Page 1 of 1

Quneo LED help for Crossfader and single pad!

PostPosted: 09 Jul 2013, 07:13
by ddjj
MIxvibes:


Can someone help me figure out how to turn on the LEDs for the Xfader . (longfader)

Also I have a SYNC drum pad that I want to light up as well!

Thanks everyone for all the help! I am progressing and trying to understand this!

DDJJ

Re: Quneo LED help for Crossfader and single pad!

PostPosted: 09 Jul 2013, 08:24
by djphaidon
The long fader will be CC5 on channel 1

the drum pad will be whatever note on channel 1 that the pad cooresponds to. Check the manual, which is included in the 1.1 and 1.2 releases. Also, the note numbers for Cross and QuNeo are different, so you will most likely have to convert the notes first in your head or on paper before you will be able to map it.

I took the pleasure of writing it down when I mapped mine out, and here is a link to the hex numbers that correspond to the pads

https://www.dropbox.com/s/6g9h6sm562xfjvx/QuNeo_LED%20Output%20Drum%20Mode.pdf

Re: Quneo LED help for Crossfader and single pad!

PostPosted: 09 Jul 2013, 09:01
by ddjj
Thanks DJ Phaidon:

I think I have the notes and what not figured out, but I am assuming this is an "OUT" command...where do I find this? Is there a standard programming methodology to place in the file?
Is it the same for all pads to turn them on? and off? Ive search the manual and since Im a noob this is not making sense yet to me!

Thx
DDJJ

Re: Quneo LED help for Crossfader and single pad!

PostPosted: 09 Jul 2013, 12:36
by FigDJ
ddjj wrote:Thanks DJ Phaidon:

I think I have the notes and what not figured out, but I am assuming this is an "OUT" command...where do I find this? Is there a standard programming methodology to place in the file?
Is it the same for all pads to turn them on? and off? Ive search the manual and since Im a noob this is not making sense yet to me!

Thx
DDJJ


Make sure you set the preset in Quneo editor to remote LED operation if you want to display the actual software fader position, otherwise the long fader will only light up on the position that you touch.

The commands for MIDI in and out are included in the txt file and the MIDI conversion table reflects 3 different numbers.

N is the actual MIDI note
Q is the decimal value used by Quneo
H is the corresponding Hexadecimal value used in Cross.

The color codes correspond to the LED colors in Quneo.

Re: Quneo LED help for Crossfader and single pad!

PostPosted: 09 Jul 2013, 18:55
by ddjj
Thanks everyone!

I am still looking for the "command" to make this happen...I have looked thru all the commands, and do not see one that seems to fit......i.e Cross Fader Flash or the like!

and also what would be the "command" to light up a single pad that I have for SYNC....?

DDJJ

Re: Quneo LED help for Crossfader and single pad!

PostPosted: 09 Jul 2013, 19:52
by FigDJ
ddjj wrote:Thanks everyone!

I am still looking for the "command" to make this happen...I have looked thru all the commands, and do not see one that seems to fit......i.e Cross Fader Flash or the like!

and also what would be the "command" to light up a single pad that I have for SYNC....?

DDJJ


Crossfader command
In&Out fam(Mixer).Crossfader (Normal)

Input mapping for crossfader
Code: Select all
 <mapping>
  <events>
    <MIDI type="CC" parameter="0xa" channel="0x1"/>
  </events>
  <controls>
    <control alias="fam(Mixer).Crossfader"/>
  </controls>
  <preset name="Direct Fader/Knob">
    <parameters>
      <parameter object="action-0" key="action" value="SetNormalTakeOver"/>
      <parameter object="dispatch" key="centerCCandPWvalueRange" value="64 64"/>
      <parameter object="dispatch" key="useCenteredCCandPW" value="off"/>
      <parameter object="invert" key="on" value="off"/>
    </parameters>
  </preset>
</mapping>

Output mapping for crossfader
Code: Select all
 <mapping>
   <control alias="fam(Mixer).Crossfader" value="%"/>
   <MIDI type="CC" parameter="0x5" channel="0x1" value="%"/>
 </mapping>


Sync Command
In&Out fam(Player)[0x1].SyncWithMaster (Logic)

input mapping
Code: Select all
<mapping>
  <events>
    <MIDI type="Note" parameter="0x40" channel="0x1"/>
  </events>
  <controls>
    <control alias="fam(Player)[0x1].SyncWithMaster"/>
  </controls>
  <preset name="Toggler Button">
    <parameters>
      <parameter object="invert" key="on" value="off"/>
    </parameters>
  </preset>
</mapping>

sync output mapping
Code: Select all
<mapping>
  <control alias="fam(Player)[0x1].SyncWithMaster" value="true"/>
  <MIDI type="Note" parameter="0x18" channel="0x1" value="127"/>
</mapping>
<mapping>
  <control alias="fam(Player)[0x1].SyncWithMaster" value="false"/>
  <MIDI type="Note" parameter="0x18" channel="0x1" value="0"/>
</mapping>


This is all assuming that you are using Quneo preset 1 and your pads and crossfader is in remote LED mode.

This sync output mapping will light up the top left corner pad in green. Use parameter 0X19 for red.

This is just the example you would have to change parameter numbers for the actual pad you want.

Fell free to PM me for more details

Re: Quneo LED help for Crossfader and single pad!

PostPosted: 10 Jul 2013, 05:17
by ddjj
Thx FigDj:

I got both of these to work now! I guess the assumption is there is a Out MIDI to control the LEDS that has the same name as the IN?

I'm learning slowly but surely!

Thanks again!

DDJJ

Re: Quneo LED help for Crossfader and single pad!

PostPosted: 13 Jul 2013, 11:45
by Hannes
ddjj wrote:Thx FigDj:

I got both of these to work now! I guess the assumption is there is a Out MIDI to control the LEDS that has the same name as the IN?

I'm learning slowly but surely!

Thanks again!

DDJJ


Basically yes, check the tutorials section, there's a updated input/output list for every release.