Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Task

Modify your blinky program such that it blinks only when the switch is turned ON.

Hint

  • In setup(), pinMode(2, INPUT); should be inserted.
  • Place the code for blinking the LED below // do something in the code in Using Digital Input section.

int buttonState = 0;

void setup()
{
pinMode(2, INPUT);
pinMode(11, OUTPUT);
}

void loop()
{
buttonState = digitalRead(2);
if (buttonState == HIGH) {
digitalWrite(11, HIGH);
delay(500); // Wait for 500 millisecond(s)
digitalWrite(11, LOW);
delay(500); // Wait for 500 millisecond(s)
} else {
}
}

  • No labels