Quneo LED help for Crossfader and single pad!

  
Forum rules
Click here to join MIxvibes on DISCORD https://discord.gg/gMdQJ2cJqa

Quneo LED help for Crossfader and single pad!

Postby ddjj on 09 Jul 2013, 07:13

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
Dell Inspiron with I7 processor
Windows 8.1
8 GB Ram, 1 TB Hard Drive
Audio 2 DJ Soundcard
Allen and Heath 62 Mixer 1
Quneo Controller
Internal Intel graphics card
GT 630m Nvidia Graphics Card
ddjj
 
Posts: 175
Joined: 23 Sep 2003, 08:44
Location: phoenix, arizona USA


Re: Quneo LED help for Crossfader and single pad!

Postby djphaidon on 09 Jul 2013, 08:24

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
Image

MixVibes Cross 2.6.0
A&H Xone:DB4 / A&H Xone:K2 / QuNeo / iPad Lemur
15' MacBook Pro / 16Gb RAM

Retired: Jazzmutant Lemur / Korg padKontrol / Korg Zero 4 / VCI 100 / APC40 / NI S4 / Traktor

Image
Image
User avatar
djphaidon
 
Posts: 423
Joined: 21 Aug 2012, 06:17
Location: Reno, NV


Re: Quneo LED help for Crossfader and single pad!

Postby ddjj on 09 Jul 2013, 09:01

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
Dell Inspiron with I7 processor
Windows 8.1
8 GB Ram, 1 TB Hard Drive
Audio 2 DJ Soundcard
Allen and Heath 62 Mixer 1
Quneo Controller
Internal Intel graphics card
GT 630m Nvidia Graphics Card
ddjj
 
Posts: 175
Joined: 23 Sep 2003, 08:44
Location: phoenix, arizona USA


Re: Quneo LED help for Crossfader and single pad!

Postby FigDJ on 09 Jul 2013, 12:36

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.
You do not have the required permissions to view the files attached to this post.
Image
FigDJ
 
Posts: 1355
Joined: 22 Apr 2012, 17:03
Location: Odenton, MD


Re: Quneo LED help for Crossfader and single pad!

Postby ddjj on 09 Jul 2013, 18:55

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
Dell Inspiron with I7 processor
Windows 8.1
8 GB Ram, 1 TB Hard Drive
Audio 2 DJ Soundcard
Allen and Heath 62 Mixer 1
Quneo Controller
Internal Intel graphics card
GT 630m Nvidia Graphics Card
ddjj
 
Posts: 175
Joined: 23 Sep 2003, 08:44
Location: phoenix, arizona USA


Re: Quneo LED help for Crossfader and single pad!

Postby FigDJ on 09 Jul 2013, 19:52

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
Image
FigDJ
 
Posts: 1355
Joined: 22 Apr 2012, 17:03
Location: Odenton, MD


Re: Quneo LED help for Crossfader and single pad!

Postby ddjj on 10 Jul 2013, 05:17

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
Dell Inspiron with I7 processor
Windows 8.1
8 GB Ram, 1 TB Hard Drive
Audio 2 DJ Soundcard
Allen and Heath 62 Mixer 1
Quneo Controller
Internal Intel graphics card
GT 630m Nvidia Graphics Card
ddjj
 
Posts: 175
Joined: 23 Sep 2003, 08:44
Location: phoenix, arizona USA


Re: Quneo LED help for Crossfader and single pad!

Postby Hannes on 13 Jul 2013, 11:45

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.
June 2012 Mixvibes DJ of the month

https://soundcloud.com/han-nes-10/fridaybeatdown2ndedition
no support by pm

beta troll

Macbook Pro 13, late 2011, 6GB RAM, 480GB Crucial M500
Thudrumble TR-1S, Vestax VFX-1, ESI Maya USB+, Rane SL2
User avatar
Hannes
 
Posts: 4168
Joined: 07 Dec 2010, 02:57
Location: Vienna



Return to Mapping Midi




Who is online

Users browsing this forum: No registered users and 64 guests

Board index

 
 
   
 
© 2014 Mixvibes