synthesizer

11ivan11
Posts: 23
Joined: Mon Apr 26, 2021 10:55 am

Re: synthesizer

Post by 11ivan11 »

thanks a lot
11ivan11
Posts: 23
Joined: Mon Apr 26, 2021 10:55 am

Re: synthesizer

Post by 11ivan11 »

Hi,i have understood the modular designer gui. So I started making korg ms-20
User avatar
utdgrant
Posts: 679
Joined: Wed Apr 07, 2021 8:58 am
Location: Scotland
Contact:

Re: synthesizer

Post 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
VoltageModularJavaLibrary.PNG (10.25 KiB) Viewed 7069 times
______________________
Dome Music Technologies
11ivan11
Posts: 23
Joined: Mon Apr 26, 2021 10:55 am

Re: synthesizer

Post 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?
User avatar
utdgrant
Posts: 679
Joined: Wed Apr 07, 2021 8:58 am
Location: Scotland
Contact:

Re: synthesizer

Post 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.
______________________
Dome Music Technologies
11ivan11
Posts: 23
Joined: Mon Apr 26, 2021 10:55 am

Re: synthesizer

Post by 11ivan11 »

How to make sample hold in module designer? I need in, clock out
User avatar
utdgrant
Posts: 679
Joined: Wed Apr 07, 2021 8:58 am
Location: Scotland
Contact:

Re: synthesizer

Post 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
SimpleSsampleHoldPatch.jpg (246.79 KiB) Viewed 5654 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);

}
______________________
Dome Music Technologies
11ivan11
Posts: 23
Joined: Mon Apr 26, 2021 10:55 am

Re: synthesizer

Post by 11ivan11 »

How to open Cherry Audio's Java "Voltage" Class Libraries?
User avatar
utdgrant
Posts: 679
Joined: Wed Apr 07, 2021 8:58 am
Location: Scotland
Contact:

Re: synthesizer

Post 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.
______________________
Dome Music Technologies
11ivan11
Posts: 23
Joined: Mon Apr 26, 2021 10:55 am

Re: synthesizer

Post by 11ivan11 »

How to get access?
Post Reply

Return to “Module Designer”