First attempt at patching a useful instrument - Moog Minitaur


#21

Those are inputs which control the 4 LEDs.


#22

Ah, I see. thank you!


#23

Part 3 - Filters, Glide, ADSR, tweaks

Thanks for the feedback, I've rerouted the cables and connected the toggles to properly switch the oscillators.

Now it's time to add the filter. The classic Moog filter can be a hard thing to try to emulate especially digitally, in this case I have added the jaffa/filt/mm24db filter, this is connected to the main mixer combining the two oscillators and the input. The output of the filter is connected directly to the outputs. I have added an ADSR for the filter which is connected through a gain control to adjust the amount of envelope applied to the filter. This is controlled using ADS/R using knobs 1-3 on the axocontrol.

Next up is a bit of a tweak, the tuning control of OSC1 on the Minitaur provides full +1/-1 octave control, so I needed to set the mix gain to 24.00 on the dial and set the midpoint tuning of the knob to 164.8 or C4. This now give a full octave range up and down on the Oscillator - cool!

The glide control is easy, the sss/math/glideMultiExt provides for glide, with the on/off connected to a click of the axocontrol's joystick running through a logic/toggle to track the change (I'm quickly running out of physical controls).

I also added some midi/in/cc in advance of needing to control additional values using a midi controller or software. For now I'll likely just move the axo control's hardware around to test different functions.

I also added another Amp envelope which is connected to the master output VCA. No controls yet for the AMP VCA.

minataur-step3-VCF.axp (11.6 KB)

Next part will be the LFO and modulations for the filter and the VCOs.


#24

I'm hoping to have the next part up soon, I have been messing with my axoloti hardware to get one of the axoctrl from hohum working so that I have additional hardware inputs.


#25

I really like this patch!
...actually added (soldered) some pods to my axo to play along!
Yeah I am waiting :slight_smile:


#26

Thanks for making this patch. I made a polyphonic subpatch that I use routinely. It sounds sooo good.


#27

Well a bit of a set-back, I decided that late-night soldering is a good idea and soldered the row of 40 headers to the wrong side of the axoctrl, doh! I managed to get it off, but I need to now try to clean the holes to get a new header attached. Glad you guys are liking it. @hitachii maybe share the subpatch you got, I'd like to try it out.


#28

Part 4 - Axoctrl

Ok, problems solved. I got the soldering issues figured out and while I'm waiting for the OLED 3306 screen to arrive (didn't know they made ones with the VCC and ground pins swapped?!?), I put the unit together and did some basic coding on the patch.


Replacing the inputs with those from the Axoctrl is pretty straightforward, but I have a couple of questions below that maybe someone can help me figure out what the best approach is.

First things first, I'm struggling with how to control the filter. The easy way which is in the patch is to simply control the cut-off with one of the pots, which sounds great. The harder way is somehow figuring out how to combine the ADSR with the EG amount. I think what I'm trying to do is to set the cut-off frequency and then use the ADSR to modulate the amount of filter applied based on the gate? Does this sound right?

The other thing is that the pots that I bought are 0-64 range and for most things I need -64-+64 range, I solved this with the TSG/math/map b and setting the two points. Is there an easier way to do this?

Another idea which I'm not sure how to do is to take one of the pots and have it do the mixing between the two OSCs, -64=100% OSC1, 0=50/50 mix of both +64=100% OSC2. I was thinking there should be an object that does this already but I couldn't find one. This would move the mix to one of the potentiometer instead of two.

The other problem I'd like to solve is that I have four buttons on the axoctrl and I'd like to use one as a "shift" function and be able to hold it and change a value of a pot to affect a different parameter, are there any good examples of this out there?

Thanks again, I'm hoping that I'll have the screen and the modulation inputs to test out as part of the next couple of updates.

Cheers.
minataur-step4-axoctrl.axp (13.5 KB)


Modular style patch
#29

Pots themselves don't have range. "TSG/math/map b" looks like a simple solution to me.


#30

Or use conv/unipolar2bipolar with pots if you don't need to set the upper & lower value.


#31

That's a good one @janvantomme! thanks!


#32

First things first, I'm struggling with how to control the filter. The easy way which is in the patch is to simply control the cut-off with one of the pots, which sounds great. The harder way is somehow figuring out how to combine the ADSR with the EG amount.

Basically you need one pot for filter frequency, and another pot for the envelope amount.
Let's say Pot#10 is filter frequency, Pot#11 is envelope amount.
You can
1. patch the ADSR envelope and Pot#11 to the multiply object's inlets (math/*)
2. patch Pot#10 and the output of the multiply object to the add object inlets (math/+)
3. patch the output of the add object to the filter frequency

The other thing is that the pots that I bought are 0-64 range and for most things I need -64-+64 range, I solved this with the TSG/math/map b and setting the two points. Is there an easier way to do this?

Use the conv/unipolar2bipolar object

Another idea which I'm not sure how to do is to take one of the pots and have it do the mixing between the two OSCs, -64=100% OSC1, 0=50/50 mix of both +64=100% OSC2. I was thinking there should be an object that does this already but I couldn't find one. This would move the mix to one of the potentiometer instead of two.

Try searching 'fade' or 'xfade' when you're searching for an object. It will definitely blend between two inputs, but there's a chance you might need to adjust the volume when you turn the potentiometer to the middle position.

The other problem I'd like to solve is that I have four buttons on the axoctrl and I'd like to use one as a "shift" function and be able to hold it and change a value of a pot to affect a different parameter, are there any good examples of this out there?

What I'd suggest you use is the MultiPot object. (TSG/ctrl/MultiPot 3) This object allows you to change parameter by switching the layer.
Let's say you want to use Button#6 as the shift function, and you want to switch to a different parameter by holding down the button.
It'd look a little something like this

I'm excited to see your finished patch!