Simplest would be the 3.6 with audio shield it has a headphone out. Sounds like you just need to adjust your amplitude levels lower
Type: Posts; User: fabuloso_mocoso
Simplest would be the 3.6 with audio shield it has a headphone out. Sounds like you just need to adjust your amplitude levels lower
Are the cv in's going into the teensy?
Wow i had no idea Faust was implemented for teensy. Ive got to try this. Thanks for documenting this
If you have a 3.2, it has a built- in 12 bit Dac so you should start with that. 12 bits is fine for CV. Try the audio library out. Connect a sine or waveform object to the dac object, set the...
No prob. Glad i could be of help
Oh, so you want an envelope.
I think you misunderstood me, you can use the audioshield for audio AND the teensy's DAC(s) for envelopes, lfos, dc voltages, etc... at the same time.
The DAC is 12 bit...
Why dont you just use the teensy's dac for dc? Codecs are designed for ac...you can use both at the same time in the audio library.
Or if all you need is a gate why not use a digital pin instead?
Try putting analogRead at the top of the loop, you have it in an if statement.
Also, declare it as a float, like in the waveform example:
float val = (float)analogRead(A12) / 1023.0; ...
Ok cool i will try that.
Thank you!
Hi there I'm having trouble integrating a CD4051 mux with 6 pot inputs into my teensy 3.2 with audio library.
In the gui I have six sine oscillators multiplied by 6 sine LFOs acting as amplitude...
Hi, I'm working on a wavetable oscillator with the audio library...I have inverting op amps to scale my inputs to the teensy range for the freq and amp and I'm trying to figure out how to invert the...
Not sure what you mean by 'faded the smoothed way' if you could elaborate. I've got 6 right now, I plan on adding more. If by frequency partitions you mean band- limited no they're not, the waveforms...
Thanks I'll try that again. Actually I've got good results with fade ins and fade outs with a low pass filter set at 500 hertz. Just cant have high frequency fun.
So I've been trying these suggestions, which I greatly appreciate, and it's still not working. The envelope is acting about the same as the fade object. And the audiorecordqueue method requires way...
Thanks I will try these. I have tried various combinations of lowering the cutoff frequency and fade ins and outs when switching but none were totally successful.
Hi, so I'm working on a wavetable synth and the biggest issue I'm having is audible clicks when switching between waveforms. This is happening in the waveform example sketch with the included...