Search found 4 matches

by PnkMyo
Tue Jun 09, 2020 3:54 am
Forum: Module Designer
Topic: Oscillator troubles
Replies: 5
Views: 4356

Re: Oscillator troubles

SOLVED !!! IT WORKS !!!!!!
My friend helped me with this ! :D
I'm so happy ;u;

double x = cvJack.GetValue();

if (outputJack.IsConnected()){
osc.SetFrequency(
55 * Math.pow(2, x)
);

For those who may need it, who are dumb like me...
(It was so OBVIOUS ! I can't believe this ! ...Oh right ...
by PnkMyo
Tue Jun 09, 2020 2:27 am
Forum: Module Designer
Topic: Oscillator troubles
Replies: 5
Views: 4356

Re: Oscillator troubles

I'm getting closer... But I'm still not there yet.

osc.SetFrequency((Math.round(55.0 * Math.round(x * (x + .25)))) + coarseValue + fineValue);
^ This was after MANY different iterations... I'm still WAY off, though. It's overly complicated, too >:

By the way, I forgot to say this, but thank you ...
by PnkMyo
Mon Jun 08, 2020 11:41 pm
Forum: Module Designer
Topic: Oscillator troubles
Replies: 5
Views: 4356

Re: Oscillator troubles

Okay, so I've looked through there... And this is what I've got now.
Maybe I'm blind, but it's not working too well.

if (cvJack.IsConnected()){
cvValue = cvJack.GetValue();
}

double x = cvJack.GetValue();

if (outputJack.IsConnected()){
osc.SetFrequency((55.0*2*(x+0.25)) + coarseValue ...
by PnkMyo
Mon Jun 08, 2020 9:54 pm
Forum: Module Designer
Topic: Oscillator troubles
Replies: 5
Views: 4356

Oscillator troubles

Sorry if this is a dumb question, but I have been trying for days to get this to work.

So, I'm trying to make a simple oscillator module, right ? WELL, I've been having some trouble. The oscillator is way out of tune. I've tried so many methods, so many numbers, so much stuff... I can't get it to ...

Go to advanced search