#define DAC1 25
int Value = 128;
void setup() {
Serial.begin(115200);
}
void loop() {
dacWrite(DAC1, Value);
Serial.println(Value);
delay(1000); // this speeds up the simulation
}
#define DAC1 25
int Value = 128;
void setup() {
Serial.begin(115200);
}
void loop() {
dacWrite(DAC1, Value);
Serial.println(Value);
delay(1000); // this speeds up the simulation
}