I am an Arduino virgin, so please be gentle.
I bought a brand new, Uno Genuino on eBay. To get started, I created a simple sketch that pulses 10 LEDs in sequence. It works as I expected except that when pin 0 goes high, pin 1 also goes high but for less than a second, then low. I confirmed this with a voltmeter.
This is freaking me out because I bought another brand new genuine Arduino Uno and it’s doing exactly the same. Are both of these boards defective? Am I defective??
void loop() {
for (inner = 0; inner < 9; inner++) {
digitalWrite(inner, HIGH);
delay(5000);
digitalWrite(inner, LOW);
}
What am I not seeing?
TY