Hello
I am performing a simple test as follows:
int dt = 200;
void setup() {
}
void loop() {
digitalWrite(Q1_0, HIGH);
delay(dt);
digitalWrite(Q1_0, LOW);
delay(dt);
When running this program, I do see the led corresponding to Q1_0 blinking. But when plugging a resistor+LED on the actual Q1_0 output, nothing happens. Yet if I plug the resistor+LED to the A1_0, it does blink. Same behaviour is observed for Q1_1/A1_1 and Q1_2/A1_2.
Is anyone able to explain why that is?
Thanks in advance
Greg
}
The switch for all outputs is set to ON, meaning that digital outputs are enabled. When running this program, I do see the led corresponding to Q1_0 blinking. But when plugging a resistor+LED on the actual Q1_0 output, nothing happens. Yet if I plug the resistor+LED to the A1_0, it does blink. Same behaviour is observed for Q1_1/A1_1 and Q1_2/A1_2.
Is anyone able to explain why that is?
Thanks in advance
Greg