Created on: 2 August 2012
Updated on: 16 January 2023
A switch (push button) is connected to the Arduino. When the switch is closed, the LED switches on, when the switch is opened, the LED switches off.
Similar to the DigitalReadSerial project (project 2), but instead of sending the state of the switch to the serial monitor, the state of the switch is displayed on an LED. The Arduino on-board LED is used so no external LED is necessary.
Besides an Arduino Uno, USB cable, breadboard and wire links, you will need the following electronics components.
The following video shows the Arduino Button project in action. When the external button is pushed, the Arduino Uno on-board LED switches on.
The Button project on the Arduino website shows the circuit diagram and breadboard circuit.
Use the top menu in the Arduino IDE to find the Button sketch as follows.
File → Examples → 2.Digital → Button
Connect the switch to the Arduino as done in project 2 (DigitalReadSerial), or see the connection diagram for the Button project on the Arduino website. Connect the switch or button to Arduino digital pin 2, as the circuit on the Arduino website page shows.
In the Arduino IDE, select File → Examples → 2.Digital → Button to open the Button sketch. Verify and upload the sketch.
Closing the switch that is connected to Arduino pin 2 will switch the on-board "L" LED on the Arduino board on. Opening the switch will switch the LED off again.