Hi,
if the DAC seems to have given up the ghost,
could you please try this simple test sketch ?
I was messing with the Simple Audio Player too, and did not get any signal from the dac. might have been me,
but just maybe there is a problem in the simple audio player code, instead of a hardware failure..
this sketch outputs a ramp on both dac channels forever. if you have no oscilloscope, you should see a non-zero voltage (i measured about 2.3 volts) on a multimeter.
void setup() {
Serial.begin(19200);
Serial.println("program start");
}
void loop() {
for (int i = 0; i <256; i++) analogWrite(DAC0,i);
for (int j = 0; j <256; j++) analogWrite(DAC1,j);
}