Author: techgiant

 
LED Blinking

LED Blinking Project on Arduino

Get start follow the step of LED Blinking project   /* A simple program to sequentially turn on and turn off 6 LEDs * This Project Developed by Sanaullah Dream */ int LED1 = 13; int LED2 = 12; int LED3 = 11; int LED4 = 10; int LED5 =Read More

Arduino IDE

Install the Arduino Software (IDE) for Windows

Arduino is an open-source hardware and software where you can create your design and project-based on the internet of things (IoT) and it has an integrated development environment (IDE) is a cross-platform application for Windows, macOS, Linux. We show here how to install the Arduino IDE in the Windows PC. GetRead More

DC Motor

DC Motor Control using IC

DC Motor Control using by IC L298N /*DC Motor Control by using IC L298N * Developed by Sanaullah Dream */ int pin1 = 13; int pin2 = 12; int enable = 11; void setup() { pinMode(pin1, OUTPUT); pinMode(pin2, OUTPUT); pinMode(enable, OUTPUT); } void loop() { digitalWrite(pin1, HIGH); digitalWrite(enable, HIGH); delay(2000);Read More

LCD Display

LCD Display Uses

LCD (Liquid Crystal Display) screen is an electronic display module and finds a wide range of applications. A 16×2 LCD display is very basic module and is very commonly used in various devices and circuits. … A 16×2 LCD means it can display 16 characters per line and there are 2 such lines.   Diagram: LCD Display Pinout   SourceRead More