Hello folk, does the Arduino DUE DAC can't generate low signals than 0.4V and high than 2.7V ??
this is my code :
void setup() {
analogWriteResolution(10);
}
void loop() {
for (int brightness = 0; brightness < 1023; brightness++) {
analogWrite(DAC0, brightness);
delay(2);
}
for (int brightness = 1023; brightness >= 0; brightness--) {
analogWrite(DAC0, brightness);
delay(2);
}
}
and please take a look to the attached picture to see the generated wave limits.
Thank you