SlideShare a Scribd company logo
1 of 9
IMPROVEMENTS
MADE FROM
ALREADY
PROPOSED
VERSION
 Planed to add liquid level sensor to sense the sanitizer level for
refilling.
 Planned to use two Arduino UNO to reduce the overall cost of the
project instead of using Arduino MEGA.
PARTS
PURCHASED
 ARDUINO UNO
 ULTRASONIC SENSORS
 IR SENSORS
 DC GEAR MOTORS
ARDUINO
UNO  Arduino Uno is a microcontroller board based on the ATmega328P
.
 It has 14 digital input/output pins (of which 6 can be used as PWM
outputs), 6 analog inputs, a 16 MHz ceramic resonator
(CSTCE16M0V53-R0), a USB connection, a power jack, an ICSP
header and a reset button.
 The ATmega328 on the Arduino Uno comes preprogrammed with
bootloader that allows you to upload new code to it without the use
of an external hardware programmer.
IR SENSOR
 The IR Sensor Module or infrared (IR) sensor is a basic and most
popular sensor in electronics.
 It is used in wireless technology like remote controlling functions
and detection of surrounding objects or obstacles. IR sensors mainly
consist of an Infrared(IR) LED and a Photodiode, this pair is
generally called IR pair. An IR LED is a special purpose LED, it is
can emitting infrared rays ranging from 700 nm to 1 mm
wavelength.
 These types of rays are invisible to our eyes. In contrast, a
photodiode or IR Receiver LED detects the infrared rays.
DC GEAR
MOTOR
 A gear motor is an all-in-one combination of a motor and gearbox.
The addition of a gear head to a motor reduces the speed while
increasing the torque output.
 The most important parameters in regards to gear motors are speed
(rpm), torque (nm) and efficiency (%). In order to select the most
suitable gear motor for your application you must first compute the
load, speed and torque requirements for your applications.
 Most of our DC motors can be complemented with one of our
unique gearheads, providing you with a highly efficient gear motor
solution.
ULTRASONIC
SENSOR [HC-
SR04]
 The HC-SR04 ultrasonic sensor uses sonar to determine the
distance to an object. This sensor reads from 2cm to 400cm (0.8inch
to 157inch) with an accuracy of 0.3cm (0.1inches). In addition, this
particular module comes with ultrasonic transmitter and receiver
modules.
 The ultrasound transmitter (trig pin) emits a high-frequency sound
(40 kHz).
 The sound travels through the air. If it finds an object, it bounces
back to the module.
 The ultrasound receiver (echo pin) receives the reflected sound
(echo).
TRIAL
PROGRAM
FOR
READING
ULTRASONIC
SENSOR
READING
#define trigPin1 2
#define echoPin1 3
#define trigPin2 4
#define echoPin2 5
#define trigPin3 6
#define echoPin3 7
#define RLED 8
#define FLED 9
#define LLED 10
long duration, distance, RightSensor,FrontSensor,LeftSensor;
void setup()
{
Serial.begin (9600);
pinMode(trigPin1, OUTPUT);
pinMode(echoPin1, INPUT);
pinMode(trigPin2, OUTPUT);
pinMode(echoPin2, INPUT);
pinMode(trigPin3, OUTPUT);
pinMode(echoPin3, INPUT);
}
void loop() {
SonarSensor(trigPin1, echoPin1);
RightSensor = distance;
SonarSensor(trigPin2, echoPin2);
FrontSensor = distance;
SonarSensor(trigPin3, echoPin3);
LeftSensor = distance;
Serial.print(LeftSensor);
Serial.print(" ");
Serial.print(FrontSensor);
Serial.print(" ");
Serial.println(RightSensor);
LeftSensor <= 60 || RightSensor <= 60 || FrontSensor <= 50)
{
if (LeftSensor < RightSensor)
{
digitalWrite (RLED,HIGH); // turn left as hard as closeness
increses
delay(1000);
digitalWrite (RLED,LOW);
}
else if (RightSensor < LeftSensor)
{
digitalWrite (LLED,HIGH); // turn left as hard as closeness
increses
delay(1000);
digitalWrite (LLED,LOW);
}
if (FrontSensor <= 24 )
{
digitalWrite (FLED,HIGH);
delay(1000);
digitalWrite (FLED,LOW);
}
}
}
void SonarSensor(int trigPin,int echoPin)
{
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
duration = pulseIn(echoPin, HIGH);
distance = (duration * 0.032)/2;
}
TESTING OF
ULTRASONIC
SENSORS
• Three ultrasonic sensors are connected to the Arduino uno board
for testing with the help of jumper cables during developing the
obstacle avoidance system of the AGV.
THANK YOU

More Related Content

Similar to batch 7.pptx

automatic gate with photocell sensor and safety ultrasonic sensor for bridge
automatic gate with photocell sensor and safety ultrasonic sensor for bridgeautomatic gate with photocell sensor and safety ultrasonic sensor for bridge
automatic gate with photocell sensor and safety ultrasonic sensor for bridgeRifqi Darmawan
 
Automatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For Bridge
Automatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For BridgeAutomatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For Bridge
Automatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For BridgeRizalNurjaman2
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEAUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGERizalNurjaman2
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEAUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGERifqi Darmawan
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEAUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEtellanadina
 
Distance measuring unit with zigbee protocol, Ultra sonic sensor
Distance measuring unit with zigbee protocol, Ultra sonic sensorDistance measuring unit with zigbee protocol, Ultra sonic sensor
Distance measuring unit with zigbee protocol, Ultra sonic sensorAshok Raj
 
VAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptx
VAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptxVAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptx
VAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptxRuchi843636
 
Obstacle avoiding Robot
Obstacle avoiding RobotObstacle avoiding Robot
Obstacle avoiding RobotRasheed Khan
 
radar simulation using ultrasonic sensor
radar simulation using ultrasonic sensorradar simulation using ultrasonic sensor
radar simulation using ultrasonic sensorHamed Raza
 
Arduino with brief description of sensorsppt.pptx
Arduino with brief description of sensorsppt.pptxArduino with brief description of sensorsppt.pptx
Arduino with brief description of sensorsppt.pptxBhuvanaN12
 
Short Range Radar System using Arduino Uno
Short Range Radar System using Arduino UnoShort Range Radar System using Arduino Uno
Short Range Radar System using Arduino UnoIRJET Journal
 
Radar Using Arduino
Radar Using ArduinoRadar Using Arduino
Radar Using ArduinoGolu Jain
 
Analysis and Construction of a Robot controlled by a Universal Remote Control
Analysis and Construction of a Robot controlled by a Universal Remote ControlAnalysis and Construction of a Robot controlled by a Universal Remote Control
Analysis and Construction of a Robot controlled by a Universal Remote ControlIJERD Editor
 
Obstacle and edge detector report.
Obstacle and edge detector report.Obstacle and edge detector report.
Obstacle and edge detector report.Himanshu Kumar Singh
 
IRJET- Iot Based Route Assistance for Visually Challenged
IRJET- Iot Based Route Assistance for Visually ChallengedIRJET- Iot Based Route Assistance for Visually Challenged
IRJET- Iot Based Route Assistance for Visually ChallengedIRJET Journal
 
A Modified Radar With Missile Tracking and Automatic Destruction
A Modified Radar With Missile Tracking and  Automatic DestructionA Modified Radar With Missile Tracking and  Automatic Destruction
A Modified Radar With Missile Tracking and Automatic Destructionsanjay kushwaha
 

Similar to batch 7.pptx (20)

automatic gate with photocell sensor and safety ultrasonic sensor for bridge
automatic gate with photocell sensor and safety ultrasonic sensor for bridgeautomatic gate with photocell sensor and safety ultrasonic sensor for bridge
automatic gate with photocell sensor and safety ultrasonic sensor for bridge
 
Automatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For Bridge
Automatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For BridgeAutomatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For Bridge
Automatic Gate With PhotoCell Sensor And Safety Ultrasonic Sensor For Bridge
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEAUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEAUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
 
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGEAUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
AUTOMATIC GATE WITH PHOTOCELL SENSOR AND SAFETY ULTRASONIC SENSOR FOR BRIDGE
 
Distance measuring unit with zigbee protocol, Ultra sonic sensor
Distance measuring unit with zigbee protocol, Ultra sonic sensorDistance measuring unit with zigbee protocol, Ultra sonic sensor
Distance measuring unit with zigbee protocol, Ultra sonic sensor
 
VAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptx
VAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptxVAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptx
VAISHNO KANPUR INSTITUTE OF TECHNOLOGY PPT.pptx
 
Obstacle avoiding Robot
Obstacle avoiding RobotObstacle avoiding Robot
Obstacle avoiding Robot
 
radar simulation using ultrasonic sensor
radar simulation using ultrasonic sensorradar simulation using ultrasonic sensor
radar simulation using ultrasonic sensor
 
Arduino with brief description of sensorsppt.pptx
Arduino with brief description of sensorsppt.pptxArduino with brief description of sensorsppt.pptx
Arduino with brief description of sensorsppt.pptx
 
Short Range Radar System using Arduino Uno
Short Range Radar System using Arduino UnoShort Range Radar System using Arduino Uno
Short Range Radar System using Arduino Uno
 
Smart Blind stick by using arduino uno and sensor
 Smart Blind stick  by using arduino  uno  and sensor Smart Blind stick  by using arduino  uno  and sensor
Smart Blind stick by using arduino uno and sensor
 
Radar Using Arduino
Radar Using ArduinoRadar Using Arduino
Radar Using Arduino
 
Analysis and Construction of a Robot controlled by a Universal Remote Control
Analysis and Construction of a Robot controlled by a Universal Remote ControlAnalysis and Construction of a Robot controlled by a Universal Remote Control
Analysis and Construction of a Robot controlled by a Universal Remote Control
 
Obstacle and edge detector report.
Obstacle and edge detector report.Obstacle and edge detector report.
Obstacle and edge detector report.
 
Radar Detector
Radar Detector Radar Detector
Radar Detector
 
371275588.pptx
371275588.pptx371275588.pptx
371275588.pptx
 
Reverse car-parking
Reverse car-parkingReverse car-parking
Reverse car-parking
 
IRJET- Iot Based Route Assistance for Visually Challenged
IRJET- Iot Based Route Assistance for Visually ChallengedIRJET- Iot Based Route Assistance for Visually Challenged
IRJET- Iot Based Route Assistance for Visually Challenged
 
A Modified Radar With Missile Tracking and Automatic Destruction
A Modified Radar With Missile Tracking and  Automatic DestructionA Modified Radar With Missile Tracking and  Automatic Destruction
A Modified Radar With Missile Tracking and Automatic Destruction
 

More from KalaiselvanPerumal2

More from KalaiselvanPerumal2 (6)

FRL.pptx
FRL.pptxFRL.pptx
FRL.pptx
 
Nanda kumaran presentation (1).pptx
Nanda kumaran presentation (1).pptxNanda kumaran presentation (1).pptx
Nanda kumaran presentation (1).pptx
 
INDUSTRIAL TRAINING PHASE 1 PPT.pptx
INDUSTRIAL TRAINING PHASE 1 PPT.pptxINDUSTRIAL TRAINING PHASE 1 PPT.pptx
INDUSTRIAL TRAINING PHASE 1 PPT.pptx
 
fZoYmmliL18KIf8D464.pptx
fZoYmmliL18KIf8D464.pptxfZoYmmliL18KIf8D464.pptx
fZoYmmliL18KIf8D464.pptx
 
PPT FOR COLLEGE.pptx
PPT FOR COLLEGE.pptxPPT FOR COLLEGE.pptx
PPT FOR COLLEGE.pptx
 
Electronics(Robotics)MSchemeSyllabus.pdf
Electronics(Robotics)MSchemeSyllabus.pdfElectronics(Robotics)MSchemeSyllabus.pdf
Electronics(Robotics)MSchemeSyllabus.pdf
 

Recently uploaded

This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfChris Hunter
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701bronxfugly43
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptxMaritesTamaniVerdade
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 

Recently uploaded (20)

This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Asian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptxAsian American Pacific Islander Month DDSD 2024.pptx
Asian American Pacific Islander Month DDSD 2024.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 

batch 7.pptx

  • 1. IMPROVEMENTS MADE FROM ALREADY PROPOSED VERSION  Planed to add liquid level sensor to sense the sanitizer level for refilling.  Planned to use two Arduino UNO to reduce the overall cost of the project instead of using Arduino MEGA.
  • 2. PARTS PURCHASED  ARDUINO UNO  ULTRASONIC SENSORS  IR SENSORS  DC GEAR MOTORS
  • 3. ARDUINO UNO  Arduino Uno is a microcontroller board based on the ATmega328P .  It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz ceramic resonator (CSTCE16M0V53-R0), a USB connection, a power jack, an ICSP header and a reset button.  The ATmega328 on the Arduino Uno comes preprogrammed with bootloader that allows you to upload new code to it without the use of an external hardware programmer.
  • 4. IR SENSOR  The IR Sensor Module or infrared (IR) sensor is a basic and most popular sensor in electronics.  It is used in wireless technology like remote controlling functions and detection of surrounding objects or obstacles. IR sensors mainly consist of an Infrared(IR) LED and a Photodiode, this pair is generally called IR pair. An IR LED is a special purpose LED, it is can emitting infrared rays ranging from 700 nm to 1 mm wavelength.  These types of rays are invisible to our eyes. In contrast, a photodiode or IR Receiver LED detects the infrared rays.
  • 5. DC GEAR MOTOR  A gear motor is an all-in-one combination of a motor and gearbox. The addition of a gear head to a motor reduces the speed while increasing the torque output.  The most important parameters in regards to gear motors are speed (rpm), torque (nm) and efficiency (%). In order to select the most suitable gear motor for your application you must first compute the load, speed and torque requirements for your applications.  Most of our DC motors can be complemented with one of our unique gearheads, providing you with a highly efficient gear motor solution.
  • 6. ULTRASONIC SENSOR [HC- SR04]  The HC-SR04 ultrasonic sensor uses sonar to determine the distance to an object. This sensor reads from 2cm to 400cm (0.8inch to 157inch) with an accuracy of 0.3cm (0.1inches). In addition, this particular module comes with ultrasonic transmitter and receiver modules.  The ultrasound transmitter (trig pin) emits a high-frequency sound (40 kHz).  The sound travels through the air. If it finds an object, it bounces back to the module.  The ultrasound receiver (echo pin) receives the reflected sound (echo).
  • 7. TRIAL PROGRAM FOR READING ULTRASONIC SENSOR READING #define trigPin1 2 #define echoPin1 3 #define trigPin2 4 #define echoPin2 5 #define trigPin3 6 #define echoPin3 7 #define RLED 8 #define FLED 9 #define LLED 10 long duration, distance, RightSensor,FrontSensor,LeftSensor; void setup() { Serial.begin (9600); pinMode(trigPin1, OUTPUT); pinMode(echoPin1, INPUT); pinMode(trigPin2, OUTPUT); pinMode(echoPin2, INPUT); pinMode(trigPin3, OUTPUT); pinMode(echoPin3, INPUT); } void loop() { SonarSensor(trigPin1, echoPin1); RightSensor = distance; SonarSensor(trigPin2, echoPin2); FrontSensor = distance; SonarSensor(trigPin3, echoPin3); LeftSensor = distance; Serial.print(LeftSensor); Serial.print(" "); Serial.print(FrontSensor); Serial.print(" "); Serial.println(RightSensor); LeftSensor <= 60 || RightSensor <= 60 || FrontSensor <= 50) { if (LeftSensor < RightSensor) { digitalWrite (RLED,HIGH); // turn left as hard as closeness increses delay(1000); digitalWrite (RLED,LOW); } else if (RightSensor < LeftSensor) { digitalWrite (LLED,HIGH); // turn left as hard as closeness increses delay(1000); digitalWrite (LLED,LOW); } if (FrontSensor <= 24 ) { digitalWrite (FLED,HIGH); delay(1000); digitalWrite (FLED,LOW); } } } void SonarSensor(int trigPin,int echoPin) { digitalWrite(trigPin, LOW); delayMicroseconds(2); digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); duration = pulseIn(echoPin, HIGH); distance = (duration * 0.032)/2; }
  • 8. TESTING OF ULTRASONIC SENSORS • Three ultrasonic sensors are connected to the Arduino uno board for testing with the help of jumper cables during developing the obstacle avoidance system of the AGV.