synthesizer
Re: synthesizer
Hi,i have understood the modular designer gui. So I started making korg ms-20
Re: synthesizer
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:
______________________
Dome Music Technologies
Dome Music Technologies
Re: synthesizer
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
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.
______________________
Dome Music Technologies
Dome Music Technologies
Re: synthesizer
How to make sample hold in module designer? I need in, clock out
Re: synthesizer
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.
User Variables and Functions section:
Code: Select all
// Add your own variables and functions here
private boolean previousClockHigh = false;
private double holdVoltage = 0.0;
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);
}
______________________
Dome Music Technologies
Dome Music Technologies
Re: synthesizer
How to open Cherry Audio's Java "Voltage" Class Libraries?
Re: synthesizer
You don't have access to the source code.
______________________
Dome Music Technologies
Dome Music Technologies