preenfm Forum

PreenFM => preenfm2 and preenfm3 => Topic started by: ericd on May 08, 2022, 12:56:28 PM

Title: FM3 MIDI CC list?
Post by: ericd on May 08, 2022, 12:56:28 PM
Just wondering if anyone has made an updated/current list of MIDI CC#'s for the FM3 they'd be willing to share here?
Thanks
Title: Re: FM3 MIDI CC list?
Post by: Toltekradiation on May 09, 2022, 07:58:21 AM
hi,
here is the CC list, from the code itself :
https://github.com/Ixox/preenfm3/blob/a1616e11ea5802c9fa40b3b278e70a7631279c1e/firmware/Src/midi/MidiDecoder.h#L42
Title: Re: FM3 MIDI CC list?
Post by: ericd on May 09, 2022, 11:44:52 AM
Wonderful- thank you so much  :)
Title: Re: FM3 MIDI CC list?
Post by: Xavier on May 12, 2022, 08:06:58 AM

Hi,

I know the midi doc is not very up to date.
Don't hesitate to ask any questions if you need more details.
Title: Re: FM3 MIDI CC list?
Post by: Megalomidiac on June 17, 2022, 12:12:42 PM

Hi,

I know the midi doc is not very up to date.
Don't hesitate to ask any questions if you need more details.

Is there any new development in the MIDI list?

I think it would be very handy if there where more deep MIDI control over the FM.
So you could just use it like the OP6 with its sliders. Just add a LaunchControlXL to it and here you go. ;)

Of course it would be the best, if the Preen had a MIDI learn feature, so there would not be a hardcoded list and you could just do it learn what is needed.
Title: Re: FM3 MIDI CC list?
Post by: ericd on June 19, 2022, 01:17:56 PM
In case anyone can't be bothered going through the source code list linked above by Toltekradiation, here is a pdf. I think I have filled in all the CC numbers correctly but please let me know here if you find an error.

Xavier feel free to remove this post if it is not helpful or accurate. Thanks.
Title: Re: FM3 MIDI CC list?
Post by: Megalomidiac on June 20, 2022, 11:38:39 AM
In case anyone can't be bothered going through the source code list linked above by Toltekradiation, here is a pdf. I think I have filled in all the CC numbers correctly but please let me know here if you find an error.

Xavier feel free to remove this post if it is not helpful or accurate. Thanks.

Thank you very much, this helps me a lot!
Title: Re: FM3 MIDI CC list?
Post by: TwistedGenetics on August 11, 2022, 04:57:52 PM
Hi,

Can you set up midi cc to control the performance knobs?

Thanks
Title: Re: FM3 MIDI CC list?
Post by: Xavier on August 23, 2022, 08:49:36 AM
Can you set up midi cc to control the performance knobs?

No, it's not currently possible.
I think it was not so simple with the preenfm2. But i don't rememver why now.

With the preenfm3, you can use UserCC instead.
They can be set to any free CC in MIX > Global 2 page.
And then use in the modulation matrix.

Title: Re: FM3 MIDI CC list?
Post by: sisyphus on September 13, 2022, 08:55:30 AM
Impressive list! How would you all go about doing 303 style slides via external MIDI cc ? I saw CC for Modwheel, but maybe since this is FM it would be smarter route to CC one of the operators ?
Title: Re: FM3 MIDI CC list?
Post by: Xavier on September 22, 2022, 10:14:19 PM

"route to CC one of the operator ? "
I'm not sure i understand.

Matrix modulation and operator does not operate as sample sampling rates.
The LFO/matrix is 1024 times slower.

So it's not possible to "mix" them.
Title: Re: FM3 MIDI CC list?
Post by: truth teller on April 03, 2023, 03:34:39 PM
theres only mix and pan for 4 instruments.  what are the final 2 instruments mix and pan?
Title: Re: FM3 MIDI CC list?
Post by: Xavier on April 16, 2023, 10:35:51 PM
I think you mean Mix and Pan for 4 operators.
Very few FM algorithm use more then 4 carrier operators. Only algo 23 and 27 i think.
For algo 23 and 27, you cannot control mix and pan of operator 5 and 6 with external midi CC.
Not sure that's a strong limit.
Title: Re: FM3 MIDI CC list?
Post by: Lcerutti on April 16, 2023, 11:31:20 PM
Hi all,

Is it possible to address reverb parameters in or reverb mix via midi CC?
Title: Re: FM3 MIDI CC list?
Post by: Xavier on April 18, 2023, 10:06:17 PM
Hi all,
Is it possible to address reverb parameters in or reverb mix via midi CC?

Some of them are :
CC#40 :     CC_MFX_PRESET
CC#41 :    CC_MFX_PREDELAYTIME
CC#42 :    CC_MFX_PREDELAYMIX
CC#43 :    CC_MFX_INPUTTILT,
CC#44 :    CC_MFX_MOD_SPEED,
CC#45 :    CC_MFX_MOD_DEPTH,

You need to send the CC to the global midi channel.

Maybe using this global midi channel should accept more "Mixer" parameters.
Reverb mix would be one of them.
Title: Re: FM3 MIDI CC list?
Post by: Toltekradiation on April 18, 2023, 11:03:58 PM
there is also CC_MIXER_SEND ( CC#11 ) for reverb dry/web, for each timbre :)
Title: Re: FM3 MIDI CC list?
Post by: Lcerutti on April 22, 2023, 11:02:31 PM
That’s the one I was looking for! Thank you!