I'd like to use Minim to let users produce 5 different signals (pink and white noise, saw, sine and pulse waves) by providing input. It's the first time I'm programming sound, and even though it kind of works now, I was wondering:
1. should I have one lineOut per signal?
2. if I should have one lineout per signal, how can I do it? (i've tried using the setOutputMixer() function, but it returns an error (the function does not exist).
I'm writing a program with two timers that should work together: when one ends, the other one starts, and some booleans are changed. Now, all works well with timer1, but timer2 fails miserably. When it's done, it's supposed to change a bool from false to true, but it just doesn't. And I am not sure what I am doing wrong!
Here's the code, any help will be much appreciated!