Vinod Kumar

How to Interface MQ 2 with Arduino

Introduction: MQ 2 or MQ6 is Gas leakage sensor which consists of 4 pins. This module is used to detect the gases like butane, propane and LPG. VCC – 5v DC GND – ground D0 – Digital out A0 – Analog out Requirements: Arduino UNO – 1 MQ2/MQ6 – 1 Jumper Wires Working: If no…

Read More

Led Blinking and Fading

Led Blinking: We will see blinking an normal dc led with arduino. Requiremnts: Arduino UNO Board – 1 No. LED – 1 No. Potentiometer – 1 No. Breadboard – 1 No. Below program is to blink an led with delay of 500msec of time: #define LED 10 void setup() {     pinMode(LED,OUTPUT); } void…

Read More

How to do Arduino Coding for beginners

In Arduino, we can do coding in C and C++ languages. We will discuss how can code in C++ language and some basic predefined functions in Arduino Code structure will be as follow: The above program is an example of led blinking of 1 second. Predefined Functions: Some of the predefined functions are:pinMode(pin,mode);digitalRead(pin);digitalWrite(pin,value);analogRead(pin);analogWrite(pin,value);pulseIn(pin,value);delay(ms); pinMode(pin,mode): Configures…

Read More

Download Arduino

How to download and install Arduino IDE  To download arduino ide go to the official website arduino.cc or alternatively click here Arduino IDE Select the respective operating system. for example click on windows then site will be redirect to the Microsoft account, login with with your credentials again redirect to the play store there click…

Read More

Arduino UNO

Arduino Uno Arduino Uno is a development board. It is flexible with any sensors and modules (for example: Ultrasonic, IR, lm35, GSM module, GPS module, etc.,). Arduino UNO Board Arduino Specifications: Microcontroller is ATmega328 Atmega328 is 28 pin IC Operating Voltage 5V Input Voltage 7-12V (External power supply not USB) Digital I/O Pins are 14 …

Read More