Page 1 of 1

How to Make Quneo Horizontal Slider act like Volume Control

PostPosted: 14 Jul 2013, 01:38
by ddjj
Good Afternoon:

I need some help! I am using the horizontal slider to increase/decrease volume to the cue mix...how do I make LEDs output from left to right in reaction to the control? (unlike the VU meters)

Thx
DDJJ

Re: How to Make Quneo Horizontal Slider act like Volume Control

PostPosted: 14 Jul 2013, 01:55
by FigDJ
ddjj wrote:Good Afternoon:

I need some help! I am using the horizontal slider to increase/decrease volume to the cue mix...how do I make LEDs output from left to right in reaction to the control? (unlike the VU meters)

Thx
DDJJ


In the example below the top horizontal slider is controlling Volume A (this is an input mapping)

Code: Select all
<mapping>
  <events>
    <MIDI type="CC" parameter="0xb" channel="0x1"/>
  </events>
  <controls>
    <control alias="fam(Mixer).VolumeA"/>
  </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>



In the example below Volume A is displayed by the top horizontal slider in Quneo. This is an output mapping.

Code: Select all
        <mapping>
          <control alias="fam(Mixer).VolumeA" value="%"/>
          <MIDI type="CC" parameter="0xb" channel="0x4" value="%"/>
        </mapping>


Make sure that your horizontal slider are set for remote LED control in the Quneo preset.

Re: How to Make Quneo Horizontal Slider act like Volume Control

PostPosted: 16 Jul 2013, 03:58
by ddjj
Got it to work!

Thanks FigDJ

DDJJ