Idea for Audio Tool page enhancement

W5ZZO

Well-known member
In order to more easily manipulate multiple channels in my synthesizer project, I coded this:
Code:
AudioSynthWaveformModulated *WaveformMod[MAX_CHANNELS]={&waveformMod1, &waveformMod2, &waveformMod3, &waveformMod4};
used by indexing to address a particular channel like this:
Code:
WaveformMod[0]->begin(WAVEFORM_SINE);
This also works well with faders and mixers.

Perhaps there could be an (optional?) automated way to generate these object arrays from the Audio Tool?
It takes some time to copy/paste and edit them manually... I am thankful for the tool as-is, but I love automation replacing drudgery.

- Wes, W5ZZO
 
Thanks, Mark. That looks promising.
Maybe I'll get a lot of work done on this today, because the bands are (relatively) lousy.

- Wes, W5ZZO
 
Back
Top