Exemple #1
0
void GlobalMidi::midiApplyOperationMode(unsigned short rawVal)
{
  if(rawVal == 1)
  {
    ByteArray cc;
    cc.push_back(0xB0);
    cc.push_back(31);
    cc.push_back(1);
    Midi::get().sendCmd(cc);
  }
  else
  {
    ByteArray cc;
    cc.push_back(0xB0);
    cc.push_back(31);
    cc.push_back((char)0);
    Midi::get().sendCmd(cc);
    Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sOperationMode, rawVal));
  }

}
Exemple #2
0
void GlobalMidi::midiApplyMasterTune(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sMasterTune, rawVal));
}
Exemple #3
0
void StompMidi::midiApplyFormantShift(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sFormantShift, rawVal));
}
Exemple #4
0
void StompMidi::midiApplyVoice2Interval(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sVoice2Interval, rawVal));
}
Exemple #5
0
void StompMidi::midiApplyIntensity(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sIntensity, rawVal));
}
Exemple #6
0
void StompMidi::midiApplyParametricEQPeakQFactor2(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sParametricEQPeakQFactor2, rawVal));
}
Exemple #7
0
void StompMidi::midiApplyGraphicEQBand8(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sGraphicEQBand8, rawVal));
}
Exemple #8
0
void StompMidi::midiApplyRotaryBalance(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sRotaryBalance, rawVal));
}
Exemple #9
0
void GlobalMidi::midiApplyHeadphoneSpaceOnOff(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sHeadphoneSpaceOnOff, rawVal));
}
Exemple #10
0
void GlobalMidi::midiApplyConstantLatencyOnOff(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sConstantLatencyOnOff, rawVal));
}
Exemple #11
0
void GlobalMidi::midiApplyAuxInToHeadphone(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sAuxInToHeadphone, rawVal));
}
Exemple #12
0
void GlobalMidi::midiApplyMonitorOutputEQPresence(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sMonitorOutputEQPresence, rawVal));
}
Exemple #13
0
void GlobalMidi::midiApplyMainOutputEQTreble(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sMainOutputEQTreble, rawVal));
}
Exemple #14
0
void GlobalMidi::midiApplySPDIFInputEnable(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sSPDIFInputEnable, rawVal));
}
Exemple #15
0
void GlobalMidi::midiApplyMonitorCabOff(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sMonitorCabOff, rawVal));
}
Exemple #16
0
void StompMidi::midiApplyModulationHyperChorusAmount(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sModulationHyperChorusAmount, rawVal));
}
Exemple #17
0
void StompMidi::midiApplyModulationPhaserStages(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sModulationPhaserStages, rawVal));
}
Exemple #18
0
void GlobalMidi::midiApplyWahPedalToPitch(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sWahPedalToPitch, rawVal));
}
Exemple #19
0
void StompMidi::midiApplyCompressorSquash(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sCompressorSquash, rawVal));
}
Exemple #20
0
void GlobalMidi::midiApplyInputSource(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sInputSource, rawVal));
}
Exemple #21
0
void StompMidi::midiApplyParametricEQHighFrequency(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sParametricEQHighFrequency, rawVal));
}
Exemple #22
0
void GlobalMidi::midiApplyReampSense(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sReampSense, rawVal));
}
Exemple #23
0
void StompMidi::midiApplyWahPeakRange(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sWahPeakRange, rawVal));
}
Exemple #24
0
void GlobalMidi::midiApplyPureCab(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sPureCab, rawVal));
}
Exemple #25
0
void StompMidi::midiApplySmoothChords(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sSmoothChords, rawVal));
}
Exemple #26
0
void StompMidi::midiApplyWahTouchAttack(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sWahTouchAttack, rawVal));
}
Exemple #27
0
void StompMidi::midiApplyPureTuning(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sPureTuning, rawVal));
}
Exemple #28
0
void StompMidi::midiApplyDistortionBoosterTone(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sDistortionBoosterTone, rawVal));
}
Exemple #29
0
void StompMidi::midiApplyHighCut(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sHighCut, rawVal));
}
Exemple #30
0
void GlobalMidi::midiApplyDirectOutputVolume(unsigned short rawVal)
{
  Midi::get().sendCmd(createSingleParamSetCmd(getAddressPage(), sDirectOutputVolume, rawVal));
}