I dont use 3.5/6 or 4.1s :-)
Honestly whats easier? Copy a file (where is my card ????) to a SD (where is my card reader????) and plug it into a board (dont forget to make the SD Slot easily acessible - my Teensys...
Right! NEED * MORE * COFFEE and tried to edit Post #3. I wasnt aware that this options runs out after some Time???
Most recent (branded) PSUs work just fine, only the cheapest ones (hence the ones with older...
Moin Ben!
First, you have t understand that you NEVER should run Audio Circuits directly from a non trustworhty, possibly unstabilized and unfiltered rail, especially if you have a common GND with some digital...
Besides the fact that S/N ratio isnt not really an important parameter to a Synth (at least i didt care for it, "musicallity" or usabliity are magnitudes of more importance) - does it make sense to measure on a...
Its easy: every time you connect something (quick enough.... see here "Why do some synths produce clicks") and there is a voltage difference it clicks. It doesnt matter if you connect it via plugging in or a relay -...
You still create a Click with these types of Relais, i guess you would need a "make before break" type of relay. Besides this, a relay for preventing a switch on pop is deep in overengineering terrain. But thats just me.
What exactly do you want to achieve with this??? Whats the difference between plugging in a jack and switching via a relais? And: whats the criteria for switching on the Relais?
Paul,
thanks for the quick response!
I just tried to save me the hassle of multiple 595s for driving all the LEDs in my next Project and one single PIN to drive approx 30 LEDs + they all can be RGB now looks pretty...
I love Blinkenlights but i got confused:
are WS2811 or PL9823 LEDs (im specially interested in 5mm or even 3mm Versions) compatible with the WS2812 and can i use the W2812Serial Library with these?
Any input...
Teensys PCB Qualitiy is top notch and i never had an issue the last 50+ teensys i soldered. If you have problems soldering to it it may be these are more on your side and you might possibly need a little more practice?...
Why do you have a physical bass boost? If you feel you are lacking low end you could either implement a Sub Oscillator (good idea anyways) or ad a bit digitally (via adding HP output from a SVF to the Sum at the end of...
You can also order them via AliExpress for about 6ct/pc
They are as cheap as resistors (nearly) so the easiest Solution is to just buy a few hundred PT8211 and keep them on Stock. At least if you dont plan to sell...
Why dont you just use the Teensy Audio Systems AudioSynthKarplusStrong Object to directly synthezide Plucked Sounds?
The onboard DAC is capable of at least 44,1 kHz @ 12 Bits.
Next Problem: the new Library doesnt compile older Sketches properly anymore for the LC:
#include "EncoderTool.h"
using namespace EncoderTool;
Encoder encoder;
int value=0;
void setup() {
Adding EncoderTool-master from today to my /Dokumente/Arduino/Libraries folder in addition to EncoderTool-2.2.1 now compiles the Code in question:
#include "EncoderTool.h"
using namespace EncoderTool;
Encoder...
Nope, heres a snippet of the Code from a Sketch where it works:
pinMode(stopLEDpin, OUTPUT);
analogWriteResolution(12);
encoder.begin(encoderA,encoderB); // A=0, B=1
encoder.setValue(0);
...
Puh - i thought i am to dumb to understand.....
I can confirm, first calling a Serial.println("Irgendwas"); is a workaround. I got a bit crazy, because i just copied + pasted these lines from another Sketch and it...
I just wanted to start a new Sketch, copying definitions for Hardware and Variables from an older Sketch and - voila - it doesnt work.
It boils down to this:
#include "EncoderTool.h"
using namespace EncoderTool;...
Thanks for that hint - TSSOP looks somehow solderable by hand so one can avoid Breakout Boards. So i use them simply with the i2s Output Module form the Audio System? Just like the PT8211??
I guess the trick is an LFO means LOW frequency oscillator. Low as in "much lower than the modulated Signal". Your Pic above reminds me more of FM, as the modulating Oscillators frequency is roughly the same as the...
Nope, i get the effect of a classic VCA modulated by a LFO : change the Amplitude according to the LFOs Signal.
As staded above, you should feed the AudioAmplifer Object with Values from 0-1.0 do miin the VCAs...
You could use a simple timer driven Phase Accumulator and a Huuuuge Lookup Table for your LFOs and have these modulate an AudioAmplifier Object. At least its what i do.
And: Yes, im Interested what you did there.....
You are using a simple Voltage divider for your -5V Offset Voltage, so every Noise on the negative Rail will bleed into your Circuit. How accurate are your A/D readings then?
Sorry if this has been asked before, but my abilities to use the search function didn reveal anything....
Q: Is there a way to have the EEPROM flashed with Data when i program the Teensy? I'd like to have a set of...
OK, i worked it out. Somehow. At least a feasible, but probably maximum unelegant way to get the Waveforms converted:
1° Resample you singlecycle (16 Bit Mono) waveform so you get exactly 256 samples length, using...
Sorry if this one comes up frequently but i cant find anything i can understand:
Is there any documentation on how to convert a .wav single cycle Waveform to something that can be used as arbitrary waveform array to...