Objective:          To measure the distance of the object present Components Required Arduino Uno Ultrasound Sensor Connection Diagram Program int trigPin = 2, echoPin = 3; long duration; int distance; void setup() { pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); Serial.begin(9600); } void loop() { digitalWrite(trigPin, LOW); delayMicroseconds(2); digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); duration = pulseIn(echoPin, HIGH); distance= […]

CONTINUE READING ➞

Objective:          To display the messages through LCD display Components Required Arduino Uno Liquid Crystal Display (LCD) Connection Diagram Program #include <LiquidCrystal_I2C.h> LiquidCrystal_I2C lcd(0x27, 16, 2); void setup() { lcd.begin(); lcd.print(“Hello World”); } void loop() { } Working          The LCD displays the characters based on allowing / blocking the light intensities by changing the […]

CONTINUE READING ➞

Objective:          To Control (ON/ OFF) the devices connected in the AC supplies (230 V) Components Required Arduino Uno Relay Module   Connection Diagram Program int RelayPin=13; void setup() { pinMode(RelayPin, OUTPUT); } void loop() { digitalWrite(RelayPin, HIGH); delay(1000); digitalWrite(RelayPin, LOW); delay(1000); } Working          The Relay operates as Electrical Controlled switch. It has input […]

CONTINUE READING ➞

Objective:          To detect the Light Intensity using LDR Sensor Components Required Arduino Uno Light Dependent Resistor (LDR) Sensor Resistance (1K Ohm) Connection Diagram Program void setup() { Serial.begin(9600); } void loop() { int sensorValue = analogRead(A0); Serial.print(“Light Intensity is :”); Serial.print(sensorValue); } Working          The output of the LDR sensor is accessed by the […]

CONTINUE READING ➞

Objective:          To detect the objects using IR sensor. Components Required Arduino Uno Infra Red Sensor Connection Diagram Program int sensorPin = 3; int sensorValue = 0; void setup() { pinMode(sensorPin, INPUT); Serial.begin(9600); } void loop() { sensorValue = digitalRead(sensorPin); if(sensorValue==HIGH) { Serial.println(“Object Detected”); } else { Serial.println(“Object not Detected”); } } Working          The […]

CONTINUE READING ➞

Objective:          To activate the Buzzer in order to make sound for alert Components Required Arduino Uno Piezo Electric Buzzer  Connection Diagram Program int Buzzpin=13; void setup() { pinMode(Buzzpin, OUTPUT); } void loop() { digitalWrite(Buzzpin, HIGH); delay(1000); digitalWrite(Buzzpin, LOW); delay(1000); } Working          The Program Activates the Buzzer to ON by supplying HIGH voltage to […]

CONTINUE READING ➞

Download Link : https://drive.google.com/file/d/1HCfF6vBkHVu4NxMokbUo37FXOzyikwaS/view?usp=sharing Complete Reports Free Downloads Available upto 15 slides includes the following chapters 1. Abstract, 2. Introduction, 3. Literature Survey, 4. Methodology with Block Diagram, 6. Hardware Details, 7. References More Reports, PPTs :  http://www.spectruminfotech.in For Projects Contact : +91 7598364645 Mail Us                        : spectruminfotech3@gmail.com

CONTINUE READING ➞

Download Link : https://drive.google.com/file/d/15lNqGjT3h5rcpsJM5GLROgN5J_7rsEE1/view?usp=sharing Complete Reports Free Downloads Available upto 15 slides includes the following chapters 1. Abstract, 2. Introduction, 3. Literature Survey, 4. Methodology with Block Diagram, 6. Hardware Details, 7. References More Reports, PPTs :  http://www.spectruminfotech.in For Projects Contact : +91 7598364645 Mail Us                        : spectruminfotech3@gmail.com

CONTINUE READING ➞

Download Link : https://drive.google.com/file/d/1TJYaJCyJRS1q3oOglD6aDbOcZxtEZZUq/view?usp=sharing Complete Reports Free Downloads Available upto 15 slides includes the following chapters 1. Abstract, 2. Introduction, 3. Literature Survey, 4. Methodology with Block Diagram, 6. Hardware Details, 7. References More Reports, PPTs :  http://www.spectruminfotech.in For Projects Contact : +91 7598364645 Mail Us                        : spectruminfotech3@gmail.com

CONTINUE READING ➞
Navigation

My Cart

Close
Viewed

Recently Viewed

Close

Great to see you here !

Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our privacy policy.

Already got an account?

Quickview

Close

Categories