Fez audio out on a Domino

Guys -

I had tried the FEZ Audio Out sample project at [url]GHI Electronics – Where Hardware Meets Software with the last version of the firmware. Worked great. Now it doesn’t. Nothing has changed other than upgrading to the new firmware. I’ve stepped through the code and it is not throwing any errors. I’m just not getting any sound out of AN0. There is a faint beep or two, but that’s it. The beginner’s guide has nothing for sample code, and just says …to be continued… under the Audio section.

TIA,
Eric

I thought audio out was on ADC3 / AOUT in this release?

Cheers Ian

ADC3 is Audio out as far as I know.

Not sure where I got 0 in my head… 3 is the winner. Thx.

Probably from the code.


static AnalogOut aout = new AnalogOut(AnalogOut.Pin.Aout0;

Aout0 is on the An3 pin! :wink:

What is the reason they needed to fix a specific AN pin? Is not this done in sw?

yep, in software on the only Analog Out pin there is :wink: That’s why An3

There is only one Analog out and that is AN0…
On FEZ Panda/Domino this is connected to An3 pin

So this is FEZ.AnalogOut.An3

or AnalogOut.pin.AN0

A bit confusing but it had to be done for Arduino compatibility reasons.