digitalWrite(5, LOW );
delay(200);
}
else
digitalWrite(13, LOW );
digitalWrite(11, LOW );
Looks like you forget a set of brackets around your 'else' clause so only one line is part of the 'else'.
digitalWrite(5, LOW );
delay(200);
}
else
digitalWrite(13, LOW );
digitalWrite(11, LOW );
Looks like you forget a set of brackets around your 'else' clause so only one line is part of the 'else'.