SlideShare a Scribd company logo
1
Control Project
 Ahmed Hassan Ahmed Eteba o 5313016
 Mahmoud Essam Mohamed Barakat o 5313335
 Sherif Salah Hamdy Aly o 5313158
2
Summary
 In this report we talk about our project’s day by day
progress, the components we use, the problems that we
faced and the ideas we suggest to overcome these
problems.
3
Table of contents
Table of Contents
Table of contents............................................................................................3
Introduction ....................................................................................................6
Progress...........................................................................................................7
Day 1: ........................................................................................................7
Ideas of movement: ..........................................................................7
Ideas of measuring GSM and Wi-Fi:............................................7
Day 2: ........................................................................................................8
Searching: ...........................................................................................8
Day 3: ........................................................................................................9
Day 4: ........................................................................................................9
Buying...................................................................................................9
Day 5: ......................................................................................................10
Researching and ideas ..................................................................10
Day 6: ......................................................................................................10
4
Day 7: ......................................................................................................11
Day 8: ......................................................................................................11
Day 9: ......................................................................................................12
Day 10:....................................................................................................12
Day 11:....................................................................................................13
Day 13:....................................................................................................14
Day 14:....................................................................................................14
Day 15:....................................................................................................14
Components..................................................................................................15
Arduino Uno:..........................................................................................15
Wi-Fi Arduino shield: ...........................................................................17
Infrared sensors (line follower module):.........................................18
Ultrasonic sensor (HC-SR04): ..........................................................20
DC motors and wheels: ......................................................................22
Line Follower robot .....................................................................................23
Line follower robot block diagram........................................................25
Bluetooth controlled car ..............................................................................26
Bluetooth controlled car block diagram................................................28
Conclusion....................................................................................................29
5
What we‘ve learnt?......................................................................................30
Problems we faced.......................................................................................31
References ....................................................................................................32
6
Introduction
 We are requested to make a project in the control course
about something that moves in the x-y axis (bonus: z-axis)
and measuring mobile and Wi-Fi signals, then after scanning
the area, it will stop at the location which has the higher
signals strength.
7
Progress
Day 1:
 In the first day we suggest some ideas and we search about
them at home.
Ideas of movement:
 Mobile controlled car
 Line follower robot
Ideas of measuring GSM and Wi-Fi:
 Using sensors
 Using mobile as a sensor
 Using Arduino shields
8
Day 2:
Searching:
 After searching , we have found that line follower needs the
following components:
1. Car body
2. 2 DC motors
3. 2 wheels and 1 free wheel
4. At least 2 IR sensors (5 or 6 recommended)
5. Drive motor (H-Bridge) LM358N
6. Arduino Uno
 And the signals can be measured by
1. RF sensor
2. GSM Arduino shield
3. Wi-Fi Arduino shield
9
Day 3:
 We search about how we can measure the signals and we
found that we can measure them by:
1. RF sensor
2. GSM Arduino shield
3. Wi-Fi Arduino shield
 We also search about the programming code of the line
follower robot.
Day 4:
Buying
 We found the following components:
1. Car body
2. 2 DC motors
3. 2 wheels
4. Drive motor (H-Bridge) LM358N
5. IR line following module
6. Arduino Uno
 Problems we faced while buying:
1. We didn’t find the free wheel or the RF sensor
2. The GSM Arduino shield is expensive (about 650 L.E)
10
Day 5:
Researching and ideas
 We make a new search in order to overcome these
problems.
 We suggest that we do a circuit that receives the mobile and
Wi-Fi signals.
Day 6:
 We asked the teaching assistants and the professors in the
communication department about doing a circuit that receives
the mobile and Wi-Fi signals and measure it and they told us
that it is complicated.
11
Day 7:
 We implement the project and make tasks that we will do in
the lab in the next day, then we disjoint the whole project.
 We suggest another idea in order to measure the signals
which is using the mobile phone as a sensor.
Day 8:
 Our section was in this day.
 In the lab we re implement the project and we wrote the
Arduino code.
12
Day 9:
 We suggest an idea of having a plan B, so that if anything
wrong happens to the IR sensors we would use a Bluetooth
module to control the movement of the robot by the mobile
phone.
 While we were buying the Bluetooth module, we found the
free wheel and bought it.
Day 10:
 We search about the programming code of the Bluetooth
module.
 We implement the free wheel.
13
Day 11:
 We search about the mobile applications which measures
the mobile signal and Wi-Fi signal strength , and sends it to
the Arduino
 We found mobile applications which measures the mobile
signals in dB like “open signal” app and “Wi-Fi Analyzer” app
which measures the Wi-Fi signal also in dB but they don’t
send these measures via Bluetooth or any other mean of
communication between the mobile phone and the Arduino.
 We found that there’s no mobile application which gets the
power of the GSM and Wi-Fi signals and sends these
signals to the Arduino, and to make this application it needs
an android programming, which needs at least about 50%
background in Java programming and we don’t know
anything about Java.
14
Day 12:
 We found that there is a circuit that senses if the mobile is
used or not (like calling or texting).
Day 13:
 Searching for an app on the app store that sends the signals
to the Arduino.
Day 14:
 Trying to get a programmed android app from the internet.
Day 15:
 We finally test our project
15
Components
Arduino Uno:
 The controller of the circuit which contain the programming
code wrote with a programming language called Processing.
16
GSM Arduino shield:
 The sensor of the mobile signal, which returns the mobile
signal strength to the Arduino Uno.
17
Wi-Fi Arduino shield:
 The sensor of the Wi-Fi signal, which returns the Wi-Fi signal
strength to the Arduino Uno.
18
Infrared sensors (line follower module):
 The infrared sensor has infrared LED , which emits not
invisible infrared light , and has infrared LAD , which absorbs
the infrared light , if it is reflected by a non-black object
(because black absorbs light) .
19
 This sensor used in the line follower robot to determine the
black line.
20
Ultrasonic sensor (HC-SR04):
 It is used to measure the distance , by sending a pulse on
the trigger pin (it’s minimum time of the pulse’s HIGH is 10
microseconds) , this pulse will send an ultrasonic sound
21
 When this ultrasonic sound is reflected by an object, it will
travel the same distance between the sensor and the object
again.
 By knowing the time between sending the sound and
receiving it, this is the time of double the distance between
the sensor and the object, so we need the half of this time,
and we know the speed of the sound which is 340 m/sec,
from the equation of
“Distance = speed * time”, we can calculate the distance
between the sensor and the object.
22
DC motors and wheels:
 The DC motors used to rotate the wheels to move the robot
and they are controlled by the Arduino indirectly.
23
Line Follower robot
24
 We use 3 IR sensors to detect the black line that the robot
will follow, so we solve the problem of moving in x-y axis.
 We use Arduino shields (GSM and Wi-Fi shields) to measure
the two signals strengths.
 In order to be able to get back to the location that has the
maximum signals we need to know the coordinates of the
location which has the maximum signals.
 So by knowing the U-Turn number and the distance travelled
in this U-Turn, we can save the location which has the
maximum signals by saving its number of U-Turn and
distance, so that the robot can get back to that location.
 So we use ultrasonic sensor to measure the distance and
the number of U-Turn.
25
Line follower robot block diagram
26
Bluetooth controlled car
27
 We control the car by using the Bluetooth module (HC-05)
with a mobile application “SENA B Term”
 In the code we have programmed the Arduino to move:
 forward by pressing “w” in the keyboard of the mobile
 backward by pressing “s” in the keyboard of the mobile
 right by pressing “d” in the keyboard of the mobile
 left by pressing “a” in the keyboard of the mobile
 stop by pressing “x” in the keyboard of the mobile
28
Bluetooth controlled car block diagram
29
Conclusion
In our opinion, the best solution of the moving problem we thought
in, to make a vehicle that has a programmable and customizable
chip so we can customize it to solve the problem of moving along
with taking the readings from the sensors and run the program we
wrote on it to locate the point of the maximum readings and stop
on it after taking one complete lap (to take all the readings).
30
What we‘ve learnt?
 We learnt how to program an Arduino chip
 We improved our mechanical & electrical skills.
 We get a lot of experience in the field of Electrical
Engineering.
 We learnt how to deal with hard tasks.
 We learnt how to manage our time.
 We learnt more about (Team Work).
31
Problems we faced
 We didn’t have the knowledge of programming the Arduino.
 Some of the components was not easy to found in the
market.
 Some of the components was too expensive.
 The time was too short to finish the project.
 We have been suspected that we have a bomb and we
was going to be arrested (Many times)
32
References
https://www.arduino.cc/en/Tutorial/GSMToolsGsmScanNetworks
https://www.arduino.cc/en/Reference/StringObject
https://www.arduino.cc/en/Reference/String
https://www.arduino.cc/en/Reference/GSMScannerGetSignalStre
ngth
https://www.youtube.com/watch?v=BQCKYKrE_H4&feature=yout
u.be
https://www.youtube.com/watch?v=zq51oZMzyP0
https://www.youtube.com/watch?v=EMc1aSKyxAw
https://www.arduino.cc/en/Tutorial/GSMExamplesSendSMS
http://cds.linear.com/docs/en/datasheet/5534fc.pdf
https://www.youtube.com/watch?v=69TV-cZua9s
http://robotics.stackexchange.com/questions/2262/how-to-
choose-wifi-signal-strength-detecting-sensors
https://www.youtube.com/watch?v=QVe-wKlMtvY
https://www.youtube.com/watch?v=zq51oZMzyP0
33
http://interface.khm.de/index.php/lab/interfaces-advanced/radio-
signal-strength-sensor/
http://interface.khm.de/wp-
content/uploads/2010/03/lt5534_rfssi3sch.jpg
https://www.youtube.com/watch?v=xgIL81VSKX4
https://www.youtube.com/watch?v=kml8pNNGTvU
http://store.fut-electronics.com/collections/new-
products/products/line-tracing-robot
http://electronics010.blogspot.com.eg/2015/11/17-arduino-dc-
motor.html
https://www.youtube.com/watch?v=p00-pacliMw
https://www.youtube.com/watch?v=4POKLgpPwU8
http://forum.arduino.cc/index.php?topic=93224.0
http://letsmakerobots.com/node/38550
https://www.youtube.com/watch?v=YW4pP1GoFIk
https://www.youtube.com/watch?v=arXQnISJLes&feature=youtu.
be
http://www.gettutorialized.com/uncategorized/line-follower-robot-
arduino-part1-assembly-connection/
34
http://www.instructables.com/id/Line-following-Robot-with-
Arduino/
http://www.instructables.com/id/Line-following-Robot-with-
Arduino/step6/Test-and-Tune/
http://makerselectronics.com/product/wifi-esp8266-serial-ttl-
module/?v=fbe46383db39
https://www.arduino.cc/en/Reference/WiFiRSSI
https://www.youtube.com/watch?v=RHJVyMYJ1XQ
http://www.electroschematics.com/11276/esp8266-datasheet/
http://diyhacking.com/make-line-follower-10-minutes/
http://www.instructables.com/id/Arduino-Modules-L298N-Dual-H-
Bridge-Motor-Controll/
https://www.youtube.com/watch?v=kv-9mxVaVzE
http://www.instructables.com/id/Power-Supply-For-Arduino-
power-and-breadboard/
https://www.youtube.com/watch?v=_L_JyCndeKI
http://forum.arduino.cc/index.php?topic=394123.0
https://www.youtube.com/watch?v=E-1w7dL3Cps
35
http://explore.appinventor.mit.edu/ai2/tutorials?field_tutorial_type_
tid%5B%5D=77
https://www.youtube.com/watch?v=kXJJauAWrzc
http://howtomechatronics.com/tutorials/arduino/how-to-build-
custom-android-app-for-your-arduino-project-using-mit-app-
inventor/
http://howtomechatronics.com/tutorials/arduino/arduino-and-hc-
05-bluetooth-module-tutorial/
http://www.instructables.com/id/How-control-arduino-board-using-
an-android-phone-a/#intro
http://www.instructables.com/id/Android-phone-used-as-a-GSM-
shield-for-arduino/
http://www.instructables.com/id/Use-your-android-phone-sensors-
on-the-arduino-/step6/First-example-the-compass-sensor/
http://www.instructables.com/id/Use-your-android-phone-sensors-
on-the-arduino-/step7/Last-example-The-accelerometer/
http://www.instructables.com/id/Use-your-android-phone-sensors-
on-the-arduino-/step8/End/
https://play.google.com/store/apps/details?id=com.techbitar.andro
id.sensoduino
36
http://www.instructables.com/id/Use-your-android-phone-sensors-
on-the-arduino-/step5/Software-setup/
http://www.instructables.com/id/Use-your-android-phone-sensors-
on-the-arduino-/step2/Solder-the-Bluetooth-adapter/
http://www.instructables.com/id/SensoDuino-Turn-Your-Android-
Phone-into-a-Wireless/
http://www.elecfreaks.com/829.html
https://www.reddit.com/r/arduino/comments/28tnlh/is_it_possible_
to_program_an_arduino_to_pick_up/
https://www.youtube.com/watch?v=fJvtMszk2G4
https://www.youtube.com/watch?v=yD1nd4TyH6A
https://play.google.com/store/apps/details?id=ram.mere.DoDuino
http://forum.arduino.cc/index.php?topic=158207.0
http://42bots.com/tutorials/hc-06-bluetooth-module-datasheet-
and-configuration-with-arduino/
https://techwithabhi.wordpress.com/2015/03/08/arduinogetting-
started-with-esp8266-wifi-module/
http://www.tinkernut.com/2014/03/control-rc-car-smartphone/
http://developer.android.com/reference/android/telephony/SignalS
trength.html
37
http://www.instructables.com/id/Modify-The-HC-05-Bluetooth-
Module-Defaults-Using-A/
http://www.instructables.com/id/Modify-The-HC-05-Bluetooth-
Module-Defaults-Using-A/step2/The-Arduino-Code-for-HC-05-
Command-Mode/
https://www.youtube.com/watch?v=-z_0aU8VHzk
https://www.youtube.com/watch?v=35tQBdpNXH0
https://www.youtube.com/watch?v=ZisEMfPCc0Q
https://play.google.com/store/apps/details?id=com.signalmonitorin
g.gsmsignalmonitoring&hl=en
https://www.youtube.com/watch?v=0AvsrPfko0w
https://www.youtube.com/watch?v=LK7VLjFbFas
https://www.youtube.com/watch?v=86z0CTDLI5g
https://www.youtube.com/watch?v=FetT7IMiQCA
https://gist.github.com/Mcspanky93/c6a8520f30ff07818ff2
http://www.instructables.com/id/Simple-RC-car-for-beginners-
Android-control-over-/
http://www.instructables.com/id/Simple-RC-car-for-beginners-
Android-control-over-/step2/DIY-Car-Chassis/
38
http://www.instructables.com/id/Simple-RC-car-for-beginners-
Android-control-over-/step3/Controller-MCU/
http://www.instructables.com/id/Simple-RC-car-for-beginners-
Android-control-over-/step4/Bluetooth-module/
http://www.instructables.com/id/Simple-RC-car-for-beginners-
Android-control-over-/step5/Motor-Driver/
http://www.instructables.com/id/Simple-RC-car-for-beginners-
Android-control-over-/step6/Other-parts/
http://www.instructables.com/id/Simple-RC-car-for-beginners-
Android-control-over-/step7/Theory/
http://www.instructables.com/id/Simple-RC-car-for-beginners-
Android-control-over-/step8/Android-Application/
http://www.instructables.com/id/Simple-RC-car-for-beginners-
Android-control-over-/step9/Arduino-RC-car-wiring/
https://gist.github.com/Mcspanky93/c6a8520f30ff07818ff2
https://www.youtube.com/watch?v=xsJ7176fLNw
https://www.youtube.com/watch?v=sBGuyJQKXsQ
http://stackoverflow.com/questions/10133187/problems-while-
returning-rssi-value-of-a-bluetooth-device
39
http://stackoverflow.com/questions/7201871/getgsmsignalstrength
-return-values-that-are-out-of-range
https://www.arduino.cc/en/Reference/VariableDeclaration
https://www.arduino.cc/en/Reference/Define
https://www.robotix.in/tutorial/kraig/lfrbjt/
http://embedjournal.com/programming-line-follower-robot/
https://www.youtube.com/results?search_query=send+data+from
+android+app+to+arduino
http://www.roboticsbible.com/simple-line-following-robot.html
http://www.engineersgarage.com/contribution/line-follower-robot
http://extremeelectronics.co.in/robotics/making-a-line-sensor-
using-ir-receiver/
http://www.gettutorialized.com/robotics/
https://www.youtube.com/watch?v=ZdB9YANrSVo
http://www.buildcircuit.com/easy-steps-for-making-a-line-
following-robot-using-infrared-led-photodiode-ardumoto-and-
arduino/
https://www.youtube.com/watch?v=S0hnEeG7W0w
https://en.wikipedia.org/wiki/Arduino
40
http://www.instructables.com/id/Arduino-Motor-Shield-Tutorial/
https://www.sparkfun.com/products/11769
http://duino4projects.com/linusbot-line-follower-robot-using-
arduino/

More Related Content

What's hot

Final report obstacle avoiding roboat
Final report obstacle avoiding roboatFinal report obstacle avoiding roboat
Final report obstacle avoiding roboat
Shubham Thakur
 
CopyofCIOReport
CopyofCIOReportCopyofCIOReport
CopyofCIOReport
Marzena Chmielewska
 
IRJET - The Line Follower -and- Pick and Place Robot
IRJET - The Line Follower -and- Pick and Place RobotIRJET - The Line Follower -and- Pick and Place Robot
IRJET - The Line Follower -and- Pick and Place Robot
IRJET Journal
 
BEST FINAL YEAR PROJECT CENTER CHENNAI MAASTECH-BEST BEST PROJECTS
BEST FINAL YEAR PROJECT CENTER CHENNAI MAASTECH-BEST BEST PROJECTSBEST FINAL YEAR PROJECT CENTER CHENNAI MAASTECH-BEST BEST PROJECTS
BEST FINAL YEAR PROJECT CENTER CHENNAI MAASTECH-BEST BEST PROJECTS
ASHOKKUMAR RAMAR
 
BEST ROBOTIC PROJECT CENTER CHENNAI-ROBOTIC PROJECT CENTER MAASTECH
BEST ROBOTIC PROJECT CENTER CHENNAI-ROBOTIC PROJECT CENTER MAASTECHBEST ROBOTIC PROJECT CENTER CHENNAI-ROBOTIC PROJECT CENTER MAASTECH
BEST ROBOTIC PROJECT CENTER CHENNAI-ROBOTIC PROJECT CENTER MAASTECH
ASHOKKUMAR RAMAR
 
obstacle avoiding robot
obstacle avoiding robotobstacle avoiding robot
obstacle avoiding robot
ssuser5ba2241
 
Obstacle avoiding robot.doc
Obstacle avoiding robot.docObstacle avoiding robot.doc
Obstacle avoiding robot.doc
Electronics - Embedded System
 
Robotic hand
Robotic handRobotic hand
Robotic hand
Mansoor Ghani
 
Wireless-Controlled Animatronic Hand
Wireless-Controlled Animatronic HandWireless-Controlled Animatronic Hand
Wireless-Controlled Animatronic Hand
Ahmad Moharib
 
23 2 feb17 15nov16 13357 27441-1-sp(edit)
23 2 feb17 15nov16 13357 27441-1-sp(edit)23 2 feb17 15nov16 13357 27441-1-sp(edit)
23 2 feb17 15nov16 13357 27441-1-sp(edit)
IAESIJEECS
 
Obstacle detection Robot using Ultrasonic Sensor and Arduino UNO
Obstacle detection Robot using Ultrasonic Sensor and Arduino UNOObstacle detection Robot using Ultrasonic Sensor and Arduino UNO
Obstacle detection Robot using Ultrasonic Sensor and Arduino UNO
Sanjay Kumar
 
Obstacle and edge detector report.
Obstacle and edge detector report.Obstacle and edge detector report.
Obstacle and edge detector report.
Himanshu Kumar Singh
 
Arduino Workshop Day 2 - Advance Arduino & DIY
Arduino Workshop Day 2 - Advance Arduino & DIYArduino Workshop Day 2 - Advance Arduino & DIY
Arduino Workshop Day 2 - Advance Arduino & DIY
Vishnu
 
Obstacle avoidance robot
Obstacle avoidance robotObstacle avoidance robot
Obstacle avoidance robot
Rahuldey1991
 
Gesture Control Robot using Arduino
Gesture Control Robot using ArduinoGesture Control Robot using Arduino
Gesture Control Robot using Arduino
ijtsrd
 
IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...
IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...
IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...
IRJET Journal
 
Wireless Gesture Controlled Robot (FYP Report)
Wireless Gesture Controlled Robot (FYP Report)Wireless Gesture Controlled Robot (FYP Report)
Wireless Gesture Controlled Robot (FYP Report)
Muhammad Ahkam Khan
 
Obstacle avoiding robot(Lab report)
Obstacle  avoiding  robot(Lab report)Obstacle  avoiding  robot(Lab report)
Obstacle avoiding robot(Lab report)
Захір Райхан
 
2 D.O.F Robotic Arm (SCARA Robot) using Arduino Programming
2 D.O.F Robotic Arm (SCARA Robot) using Arduino Programming2 D.O.F Robotic Arm (SCARA Robot) using Arduino Programming
2 D.O.F Robotic Arm (SCARA Robot) using Arduino Programming
Manpreet Singh
 
Third Freshers\' Workshop 2011
Third Freshers\'  Workshop 2011Third Freshers\'  Workshop 2011
Third Freshers\' Workshop 2011
Aditya Agarwal
 

What's hot (20)

Final report obstacle avoiding roboat
Final report obstacle avoiding roboatFinal report obstacle avoiding roboat
Final report obstacle avoiding roboat
 
CopyofCIOReport
CopyofCIOReportCopyofCIOReport
CopyofCIOReport
 
IRJET - The Line Follower -and- Pick and Place Robot
IRJET - The Line Follower -and- Pick and Place RobotIRJET - The Line Follower -and- Pick and Place Robot
IRJET - The Line Follower -and- Pick and Place Robot
 
BEST FINAL YEAR PROJECT CENTER CHENNAI MAASTECH-BEST BEST PROJECTS
BEST FINAL YEAR PROJECT CENTER CHENNAI MAASTECH-BEST BEST PROJECTSBEST FINAL YEAR PROJECT CENTER CHENNAI MAASTECH-BEST BEST PROJECTS
BEST FINAL YEAR PROJECT CENTER CHENNAI MAASTECH-BEST BEST PROJECTS
 
BEST ROBOTIC PROJECT CENTER CHENNAI-ROBOTIC PROJECT CENTER MAASTECH
BEST ROBOTIC PROJECT CENTER CHENNAI-ROBOTIC PROJECT CENTER MAASTECHBEST ROBOTIC PROJECT CENTER CHENNAI-ROBOTIC PROJECT CENTER MAASTECH
BEST ROBOTIC PROJECT CENTER CHENNAI-ROBOTIC PROJECT CENTER MAASTECH
 
obstacle avoiding robot
obstacle avoiding robotobstacle avoiding robot
obstacle avoiding robot
 
Obstacle avoiding robot.doc
Obstacle avoiding robot.docObstacle avoiding robot.doc
Obstacle avoiding robot.doc
 
Robotic hand
Robotic handRobotic hand
Robotic hand
 
Wireless-Controlled Animatronic Hand
Wireless-Controlled Animatronic HandWireless-Controlled Animatronic Hand
Wireless-Controlled Animatronic Hand
 
23 2 feb17 15nov16 13357 27441-1-sp(edit)
23 2 feb17 15nov16 13357 27441-1-sp(edit)23 2 feb17 15nov16 13357 27441-1-sp(edit)
23 2 feb17 15nov16 13357 27441-1-sp(edit)
 
Obstacle detection Robot using Ultrasonic Sensor and Arduino UNO
Obstacle detection Robot using Ultrasonic Sensor and Arduino UNOObstacle detection Robot using Ultrasonic Sensor and Arduino UNO
Obstacle detection Robot using Ultrasonic Sensor and Arduino UNO
 
Obstacle and edge detector report.
Obstacle and edge detector report.Obstacle and edge detector report.
Obstacle and edge detector report.
 
Arduino Workshop Day 2 - Advance Arduino & DIY
Arduino Workshop Day 2 - Advance Arduino & DIYArduino Workshop Day 2 - Advance Arduino & DIY
Arduino Workshop Day 2 - Advance Arduino & DIY
 
Obstacle avoidance robot
Obstacle avoidance robotObstacle avoidance robot
Obstacle avoidance robot
 
Gesture Control Robot using Arduino
Gesture Control Robot using ArduinoGesture Control Robot using Arduino
Gesture Control Robot using Arduino
 
IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...
IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...
IRJET- Gesture Controlled Robot with Obstacle Avoidance using Arduino and And...
 
Wireless Gesture Controlled Robot (FYP Report)
Wireless Gesture Controlled Robot (FYP Report)Wireless Gesture Controlled Robot (FYP Report)
Wireless Gesture Controlled Robot (FYP Report)
 
Obstacle avoiding robot(Lab report)
Obstacle  avoiding  robot(Lab report)Obstacle  avoiding  robot(Lab report)
Obstacle avoiding robot(Lab report)
 
2 D.O.F Robotic Arm (SCARA Robot) using Arduino Programming
2 D.O.F Robotic Arm (SCARA Robot) using Arduino Programming2 D.O.F Robotic Arm (SCARA Robot) using Arduino Programming
2 D.O.F Robotic Arm (SCARA Robot) using Arduino Programming
 
Third Freshers\' Workshop 2011
Third Freshers\'  Workshop 2011Third Freshers\'  Workshop 2011
Third Freshers\' Workshop 2011
 

Viewers also liked

hnsworksamples-160827100629
hnsworksamples-160827100629hnsworksamples-160827100629
hnsworksamples-160827100629
Bhaskar Jahn
 
Linus y Stallman
Linus y Stallman Linus y Stallman
Linus y Stallman
Gill10Guillen
 
Amonix Experience presentation 2016 April 24
Amonix Experience presentation 2016 April 24Amonix Experience presentation 2016 April 24
Amonix Experience presentation 2016 April 24
Eric Culberson
 
CFE Scenario Handbook (extract)
CFE Scenario Handbook (extract)CFE Scenario Handbook (extract)
CFE Scenario Handbook (extract)Michael Dahl
 
hnsandroidiosapps-160822080619
hnsandroidiosapps-160822080619hnsandroidiosapps-160822080619
hnsandroidiosapps-160822080619
Bhaskar Jahn
 
HnS_Profile_Catalogue
HnS_Profile_CatalogueHnS_Profile_Catalogue
HnS_Profile_Catalogue
Bhaskar Jahn
 
TLE Anatomy (extract)
TLE Anatomy (extract)TLE Anatomy (extract)
TLE Anatomy (extract)
Michael Dahl
 
KOTRESH
KOTRESHKOTRESH
KOTRESH
Kotresh Kanti
 
Clarabridge Brochure
Clarabridge BrochureClarabridge Brochure
Clarabridge Brochure
Daniel Himus-Riha
 
photoreal3drender-160820070034
photoreal3drender-160820070034photoreal3drender-160820070034
photoreal3drender-160820070034Bhaskar Jahn
 
GE Solar Experience presentation 2016 April 24
GE Solar Experience presentation 2016 April 24GE Solar Experience presentation 2016 April 24
GE Solar Experience presentation 2016 April 24
Eric Culberson
 
Anime
AnimeAnime

Viewers also liked (12)

hnsworksamples-160827100629
hnsworksamples-160827100629hnsworksamples-160827100629
hnsworksamples-160827100629
 
Linus y Stallman
Linus y Stallman Linus y Stallman
Linus y Stallman
 
Amonix Experience presentation 2016 April 24
Amonix Experience presentation 2016 April 24Amonix Experience presentation 2016 April 24
Amonix Experience presentation 2016 April 24
 
CFE Scenario Handbook (extract)
CFE Scenario Handbook (extract)CFE Scenario Handbook (extract)
CFE Scenario Handbook (extract)
 
hnsandroidiosapps-160822080619
hnsandroidiosapps-160822080619hnsandroidiosapps-160822080619
hnsandroidiosapps-160822080619
 
HnS_Profile_Catalogue
HnS_Profile_CatalogueHnS_Profile_Catalogue
HnS_Profile_Catalogue
 
TLE Anatomy (extract)
TLE Anatomy (extract)TLE Anatomy (extract)
TLE Anatomy (extract)
 
KOTRESH
KOTRESHKOTRESH
KOTRESH
 
Clarabridge Brochure
Clarabridge BrochureClarabridge Brochure
Clarabridge Brochure
 
photoreal3drender-160820070034
photoreal3drender-160820070034photoreal3drender-160820070034
photoreal3drender-160820070034
 
GE Solar Experience presentation 2016 April 24
GE Solar Experience presentation 2016 April 24GE Solar Experience presentation 2016 April 24
GE Solar Experience presentation 2016 April 24
 
Anime
AnimeAnime
Anime
 

Similar to Control-Project

Arduino_Project_Report
Arduino_Project_ReportArduino_Project_Report
Arduino_Project_Report
Jacob McCormick
 
Final_Technical_Report_KevinHuang
Final_Technical_Report_KevinHuangFinal_Technical_Report_KevinHuang
Final_Technical_Report_KevinHuang
Kevin Huang
 
project2presentation.pptx
project2presentation.pptxproject2presentation.pptx
project2presentation.pptx
GouravKumar626906
 
117_SIRJ_HMS
117_SIRJ_HMS117_SIRJ_HMS
117_SIRJ_HMS
Chandan Raj
 
IRJET- Smart Street Light Control System
IRJET- Smart Street Light Control SystemIRJET- Smart Street Light Control System
IRJET- Smart Street Light Control System
IRJET Journal
 
Radar Using Arduino
Radar Using ArduinoRadar Using Arduino
Radar Using Arduino
Golu Jain
 
Digitization of Speedometer Incorporating Arduino and Tracing of Location Usi...
Digitization of Speedometer Incorporating Arduino and Tracing of Location Usi...Digitization of Speedometer Incorporating Arduino and Tracing of Location Usi...
Digitization of Speedometer Incorporating Arduino and Tracing of Location Usi...
IJERA Editor
 
Home Automation and Robotic Pet
Home Automation and Robotic PetHome Automation and Robotic Pet
Home Automation and Robotic Pet
Adeel Ahmed
 
Multifunctional Robot (PPT).pptx
Multifunctional Robot (PPT).pptxMultifunctional Robot (PPT).pptx
Multifunctional Robot (PPT).pptx
Ruthviq
 
ARCDuino_Documentation_FINAL
ARCDuino_Documentation_FINALARCDuino_Documentation_FINAL
ARCDuino_Documentation_FINAL
Ryan Sandidge
 
Automatic Collision Control System
Automatic Collision  Control SystemAutomatic Collision  Control System
Automatic Collision Control System
Sankhadeep Rakshit
 
Autonomous navigation robot
Autonomous navigation robotAutonomous navigation robot
Autonomous navigation robot
IRJET Journal
 
Impediment detection robot using Arduino
Impediment detection robot using ArduinoImpediment detection robot using Arduino
Impediment detection robot using Arduino
Ayush Chhangani
 
Four IR Sensor Based Automatic Control of Railway Gate using Microcontroller
Four IR Sensor Based Automatic Control of Railway Gate using MicrocontrollerFour IR Sensor Based Automatic Control of Railway Gate using Microcontroller
Four IR Sensor Based Automatic Control of Railway Gate using Microcontroller
ijtsrd
 
IRJET- Design and Development of Gesture Controlled Robot
IRJET- Design and Development of Gesture Controlled RobotIRJET- Design and Development of Gesture Controlled Robot
IRJET- Design and Development of Gesture Controlled Robot
IRJET Journal
 
Black Box for Accident Analysis Using MATLAB-Image Processing
Black Box for Accident Analysis Using MATLAB-Image ProcessingBlack Box for Accident Analysis Using MATLAB-Image Processing
Black Box for Accident Analysis Using MATLAB-Image Processing
Editor IJCATR
 
Wireless Image Transmission By Robo With Metal Detector
Wireless Image Transmission By Robo With Metal DetectorWireless Image Transmission By Robo With Metal Detector
Wireless Image Transmission By Robo With Metal Detector
Sourabh Chourasiya
 
PIR sensing with arduino
PIR sensing  with  arduinoPIR sensing  with  arduino
PIR sensing with arduino
chetan kadiwal
 
ACCELEROMETER BASED HAND GESTURE CONTROLLED ROBOT USING ARDUINO
ACCELEROMETER BASED HAND GESTURE CONTROLLED ROBOT USING ARDUINOACCELEROMETER BASED HAND GESTURE CONTROLLED ROBOT USING ARDUINO
ACCELEROMETER BASED HAND GESTURE CONTROLLED ROBOT USING ARDUINO
Snehasis Mondal
 
IRJET- PC Controlled Wireless Robot for Detecting Human Presence
IRJET-  	  PC Controlled Wireless Robot for Detecting Human PresenceIRJET-  	  PC Controlled Wireless Robot for Detecting Human Presence
IRJET- PC Controlled Wireless Robot for Detecting Human Presence
IRJET Journal
 

Similar to Control-Project (20)

Arduino_Project_Report
Arduino_Project_ReportArduino_Project_Report
Arduino_Project_Report
 
Final_Technical_Report_KevinHuang
Final_Technical_Report_KevinHuangFinal_Technical_Report_KevinHuang
Final_Technical_Report_KevinHuang
 
project2presentation.pptx
project2presentation.pptxproject2presentation.pptx
project2presentation.pptx
 
117_SIRJ_HMS
117_SIRJ_HMS117_SIRJ_HMS
117_SIRJ_HMS
 
IRJET- Smart Street Light Control System
IRJET- Smart Street Light Control SystemIRJET- Smart Street Light Control System
IRJET- Smart Street Light Control System
 
Radar Using Arduino
Radar Using ArduinoRadar Using Arduino
Radar Using Arduino
 
Digitization of Speedometer Incorporating Arduino and Tracing of Location Usi...
Digitization of Speedometer Incorporating Arduino and Tracing of Location Usi...Digitization of Speedometer Incorporating Arduino and Tracing of Location Usi...
Digitization of Speedometer Incorporating Arduino and Tracing of Location Usi...
 
Home Automation and Robotic Pet
Home Automation and Robotic PetHome Automation and Robotic Pet
Home Automation and Robotic Pet
 
Multifunctional Robot (PPT).pptx
Multifunctional Robot (PPT).pptxMultifunctional Robot (PPT).pptx
Multifunctional Robot (PPT).pptx
 
ARCDuino_Documentation_FINAL
ARCDuino_Documentation_FINALARCDuino_Documentation_FINAL
ARCDuino_Documentation_FINAL
 
Automatic Collision Control System
Automatic Collision  Control SystemAutomatic Collision  Control System
Automatic Collision Control System
 
Autonomous navigation robot
Autonomous navigation robotAutonomous navigation robot
Autonomous navigation robot
 
Impediment detection robot using Arduino
Impediment detection robot using ArduinoImpediment detection robot using Arduino
Impediment detection robot using Arduino
 
Four IR Sensor Based Automatic Control of Railway Gate using Microcontroller
Four IR Sensor Based Automatic Control of Railway Gate using MicrocontrollerFour IR Sensor Based Automatic Control of Railway Gate using Microcontroller
Four IR Sensor Based Automatic Control of Railway Gate using Microcontroller
 
IRJET- Design and Development of Gesture Controlled Robot
IRJET- Design and Development of Gesture Controlled RobotIRJET- Design and Development of Gesture Controlled Robot
IRJET- Design and Development of Gesture Controlled Robot
 
Black Box for Accident Analysis Using MATLAB-Image Processing
Black Box for Accident Analysis Using MATLAB-Image ProcessingBlack Box for Accident Analysis Using MATLAB-Image Processing
Black Box for Accident Analysis Using MATLAB-Image Processing
 
Wireless Image Transmission By Robo With Metal Detector
Wireless Image Transmission By Robo With Metal DetectorWireless Image Transmission By Robo With Metal Detector
Wireless Image Transmission By Robo With Metal Detector
 
PIR sensing with arduino
PIR sensing  with  arduinoPIR sensing  with  arduino
PIR sensing with arduino
 
ACCELEROMETER BASED HAND GESTURE CONTROLLED ROBOT USING ARDUINO
ACCELEROMETER BASED HAND GESTURE CONTROLLED ROBOT USING ARDUINOACCELEROMETER BASED HAND GESTURE CONTROLLED ROBOT USING ARDUINO
ACCELEROMETER BASED HAND GESTURE CONTROLLED ROBOT USING ARDUINO
 
IRJET- PC Controlled Wireless Robot for Detecting Human Presence
IRJET-  	  PC Controlled Wireless Robot for Detecting Human PresenceIRJET-  	  PC Controlled Wireless Robot for Detecting Human Presence
IRJET- PC Controlled Wireless Robot for Detecting Human Presence
 

Control-Project