Page 2 of 3
Re: synthesizer
Posted: Sun Nov 10, 2024 4:07 pm
by 11ivan11
thanks a lot
Re: synthesizer
Posted: Sun Nov 10, 2024 6:18 pm
by 11ivan11
Hi,i have understood the modular designer gui. So I started making korg ms-20
Re: synthesizer
Posted: Mon Nov 11, 2024 9:29 am
by utdgrant
11ivan11 wrote: ↑Sun Nov 10, 2024 6:18 pm
Hi,i have understood the modular designer gui. So I started making korg ms-20
Awesome. Please keep us updated on your progress.
And feel free to reach out to the forum if you have any queries on how to use the VMD environment or Cherry Audio's Java "Voltage" Class Libraries:

- VoltageModularJavaLibrary.PNG (10.25 KiB) Viewed 7479 times
Re: synthesizer
Posted: Mon Nov 11, 2024 7:02 pm
by 11ivan11
I have some question to you:i had noticed one interesting thing when you click on right button of muse on jack it opens many jacks. its good to send some wires in one jack. yes?
Re: synthesizer
Posted: Mon Nov 11, 2024 7:27 pm
by utdgrant
11ivan11 wrote: ↑Mon Nov 11, 2024 7:02 pm
I have some question to you:i had noticed one interesting thing when you click on right button of muse on jack it opens many jacks. its good to send some wires in one jack. yes?
Yes, you can plug
as many cables as you want into a Voltage Modular Output or Input jack. If you run several cables into an input jack, it will add all the signals together like a mixer.
Re: synthesizer
Posted: Sat Mar 08, 2025 5:07 pm
by 11ivan11
How to make sample hold in module designer? I need in, clock out
Re: synthesizer
Posted: Sat Mar 08, 2025 9:12 pm
by utdgrant
11ivan11 wrote: ↑Sat Mar 08, 2025 5:07 pm
How to make sample hold in module designer? I need in, clock out
I threw this together in about 20 minutes. Feel free to use it as-is, or just use it as a starting point for your own ideas.

- SimpleSsampleHoldPatch.jpg (246.79 KiB) Viewed 6064 times
User Variables and Functions section:
Code: Select all
// Add your own variables and functions here
private boolean previousClockHigh = false;
private double holdVoltage = 0.0;
ProcessSample:
Code: Select all
public void ProcessSample()
{
// add your own code here
double signalInput;
boolean currentClockHigh;
signalInput = inputJackSignal.GetValue();
currentClockHigh = (inputJackClock.GetValue() > 2.5);
if (!previousClockHigh && currentClockHigh)
{
holdVoltage = signalInput;
}
previousClockHigh = currentClockHigh;
outputJackSignal.SetValue(holdVoltage);
}
Re: synthesizer
Posted: Sun Mar 09, 2025 8:51 pm
by 11ivan11
How to open Cherry Audio's Java "Voltage" Class Libraries?
Re: synthesizer
Posted: Sun Mar 09, 2025 11:56 pm
by utdgrant
11ivan11 wrote: ↑Sun Mar 09, 2025 8:51 pm
How to open Cherry Audio's Java "Voltage" Class Libraries?
You don't have access to the source code.
Re: synthesizer
Posted: Mon Mar 10, 2025 6:53 am
by 11ivan11
How to get access?