The Changed Blink Program
int ledPin = 13;
void setup() {
pinMode(ledPin, OUTPUT);
}
void loop()
{
digitalWrite(ledPin, HIGH);
delay(100);
digitalWrite(ledPin, LOW);
delay(100);
}
I changed the timer so that the light will blink so fast it doesn't look like it's blinking.
No comments:
Post a Comment