Arduino - DigitalRead Serial Monitor With Button
by MertArduino in Circuits > Arduino
19695 Views, 41 Favorites, 0 Comments
Arduino - DigitalRead Serial Monitor With Button
This example shows you how to monitor the state of a switch by establishing serial communication between your Arduino or Genuino and your computer over USB.
​digitalRead()
Description
Reads the value from a specified digital pin, either HIGH or LOW.
Syntax
digitalRead(pin)
Parameters
pin: the number of the digital pin you want to read (int)
Returns
HIGH or LOW
Reference : https://www.arduino.cc/en/Reference/DigitalRead
Hardware Required
- Arduino Uno
- Button
- 10k ohm resistor
- Wires
- Breadboard
Connections
- Button attach to breadboard
- One leg of the button connect a resistor
- The wire connect to digital pin to one leg of the pushbutton
- Empty leg of the resistor to ground (GND)
- Other leg of the button connect to +5V
Code
// This example code is in the public domain
int pushButton = 2;
void setup() {
Serial.begin(9600);
pinMode(pushButton, INPUT);
}
void loop() {
int buttonState = digitalRead(pushButton);
Serial.println(buttonState);
delay(1);
}
//reference https://www.arduino.cc/en/Tutorial/DigitalReadSerial
If It Helps, Please Subscribe
First of all, I would like to thank you for reading this guide ! I hope it helps you.
If you want to support me, you can subscribe my channel and watch my videos.