DAC Output on Seed

Hi all!

I’m playing around with getting some CV outs and want to use the DACs onboard the seed. If I load up the LFO example for patch it works fine but if I follow the same idea on the seed I don’t get an output. Am I missing something fundamental?

Currently writing Oscillator values in the audio callback to the DAC as follows

dsy_dac_write(DSY_DAC_CHN1, freq1 * 4095);
dsy_dac_write(DSY_DAC_CHN2, freq1 * 4095);

It looks like you’ll need to initialize DAC outputs (once, when you patch starts) on Seed before using. Here’s how it’s done for patch:

The reason why it’s not done on Seed is probably that its pins can be reconfigured for different purposes. In case of DAC outputs, they can also be configured as ADC inputs. So you’ll have to explicitly configure it due to Daisy’s limited telepathic abilities.

1 Like

thank you so much, I spent a while reading through that document as well!

Thank you again.

D