Skip to main content

Getting Started with Switches


Since now we are well acquainted with LED’s let us learn how to control the switching using a push button.
In this tutorial, we will learn how to use a push button.

A push button is used to get control of the circuit.

Components Required
  • Resistors                           2Nos. 330ohms,10k(recommended)
  • Pushbutton                        1No.
  • LED                                  1No. Standard red LED
  • Arduino UNO
  • Breadboard
Follow the video to make the circuit.

After making the circuit it will look like

Now dump the code given below

int d=2; // chose the pin which you have connected to the output of push button
void setup()
{
pinMode(2,INPUT);
pinMode(13,OUTPUT);
}
void loop()
{
d=digitalRead(2);
if(d==0)
{
digitalWrite(13,HIGH);
}
else
{
digitalWrite(13,LOW);
}
}

Now the control is in your hands whenever you will press the button the led will be ON and when you release it, LED will go OFF.

You can alter the control like
                                   
Here when we press the button LED goes ON and when we press it again it goes OFF.

For the code of the above video mail us at contact@sudolearn.com.

I hope you are having fun, try connecting multiple switches with multiple LEDs.

  • A pull-up resistor condition.
When the switch is connected to ground and one end of the resistor is connected to VCC.
  • Pull down resistor condition.
When one end of the switch is connected to Vcc and the resistor is connected to ground.
When you use these conditions while coding just remembers when you press the switch, one will give output as 0 and the other will give output as 1.

Thinking?
Join our hands-on Training Courses.
To know more visit us at http://www.sudolearn.com/

Comments

Popular posts from this blog

LED Brightness Control using Touch Sensor and ARM

Hey Folks, In this tutorial, we will learn, how to change  the intensity of light using touch sensor the ARM (FRDM-KL25Z). INTRODUCTION The FRDM-KL25Z is an ultra-low-cost development platform for Kinetis L Series KL1x (KL14/15) and KL2x (KL24/25) MCUs built on ARM® Cortex™-M0+ processor.  The FRDM-KL25Z has been designed by NXP in collaboration with mbed for prototyping all sorts of devices, especially those requiring the size and price point offered by Cortex-M0+ and the power of USB Host and Device. The FRDM-KL25Z is supported by a range of NXP and third-party development software. It is packaged as a development board with connectors to break out to stripboard and breadboard and includes a built-in USB FLASH programmer.               FEATURES NXP KL25Z Kinetis KL2x MCU (MKL25Z128VLK4) High-performance ARM® Cortex™-M0+ Core 48MHz, 16KB RAM, 128KB FLASH USB (Host/Device) SPI (2) I2C (2) UART (3) PWM (TPM) ...

Interfacing 7 Segment with ARM

Hey Folks, In this tutorial, we will learn how to interface a Seven Segment Display with ARM(FRDM-KL25Z). Components Required FRDM-KL25Z board Seven Segment Display (Common Cathode) Breadboard Mini Jumper Wires (As Required) FRDM-KL25Z         2. Seven Segment Display        3. Breadboard Mini         4. Jumper Wires (Male to Male)   Follow the Image below for circuit connection reference:-  (Interfacing all components) After making the circuit dump the code given below:- #include "mbed.h" BusOut display(PTA1,PTA2,PTD4,PTA12,PTA4,PTA5,PTC8,PTC9); int main() {          while (1) {                 display= 0xBF ;         wait( 1 );         displa...

Servo Motor Control using ESP8266 and Blynk App

Hey folks,  In this tutorial we will learn how to interface Servo motor with NodeMcu(ESP8266)module and operate it with the Blynk app.  Servos  are controlled by sending an electrical pulse of variable width, or pulse width modulation (PWM), through the control wire. There is a minimum pulse, a maximum pulse, and a repetition rate. A  servo motor  can usually only turn 90° in either direction for a total of 180° movement. servo Motor (Back view)  Servo Motor (front view) Blynk  is a Platform with iOS and Android  apps  to control Arduino, Raspberry Pi and the likes over the Internet. It's a digital dashboard where you can build a graphic interface for your project by simply dragging and dropping widgets. (Blynk App) Components Required: Servo motor NodeMcu(ESP8266) Connecting wires(male to male) Breadboard    Follow the image below for circuit connection reference. (Servo Motor connecting wi...