Infrared Proximity Sensors & Liquid Crystal Display Instructor Dr Matthew Khin Yi Kyaw.

Slides:



Advertisements
Similar presentations
EMS1EP Lecture 6 Digital Inputs
Advertisements

Lab7: Introduction to Arduino
What is Arduino?  Arduino is a ATMEL 168 micro-controller kit designed specially for small projects  User friendly IDE(Integrated Development Environment)
Autonomous Rugged Maze Navigating Robot Andy Darter Luke Kaufman BS Computer Engineering Candidates 4/27/2013 Senior Design II.
Khaled A. Al-Utaibi  Digital Vs Analog Signals  Converting an Analog Signal to a Digital One  Reading Analog Sensors with the.
PING))) Ultrasonic Distance Sensor living with the lab ultrasonic pressure waves from PING))) speaker The PING))) sensor emits short bursts of sound and.
IR Object Detection living with the lab IR light from LED IR light reflected off object IR LED IR receiver Infrared (IR) light leaving an LED reflects.
ALL TERRAIN ROBOT 1 Wilmer Arellano © The Client’s Need Lecture is licensed under a Creative Commons Attribution 2.0 License.
1 Arduino Board: Arduino UNO Arduino Programing Environment: Arduino 0022
Embedded Programming and Robotics
1 Introduction to Coding. 2 Example Codes A lot of example codes are given with Arduino IDE A code can often be based on a previous example rather than.
 Main Components:  Sensors  Micro controller  Motor drivers  Chasis.
Introduction to Arduino Prepared by R. Lamond.  “Arduino is an open-source electronics prototyping platform based on flexible, easy- to-use hardware.
1 Ultrasonic Distance Sensor. 2 How it Works The distance sensor emits short bursts of sound and listens for this sound to echo off of nearby objects.
Basic Circuits – Lab 2 Arduino and Sensors Xmedia Spring 2011.
ARDUINO PROGRAMMING Working with the Arduino microcontroller.
Arduino Nano to Uno I2C Communication Mike Pluma The-Bao Nguyen EE 444 Spring 2013.
Sensors Material taken from Robotics with the Boe-Bot.
MSP 430 Project ECE 300 Spring 2004 William S. McLemore Ruben D. Briano Cheng-Han Tsai.
PING))) Ultrasonic Distance Sensor living with the lab ultrasonic pressure waves from PING))) speaker The PING))) sensor emits short bursts of sound and.
Unit 5 – “Watch Out!”. Introduction New Topics Case Structures New Functions Less? Comparison Function Ultrasonic Sensor.
Practical Electronics & Programming
Arduino. What is it? A open-source software suite and single-board microcontroller. Allows easy and affordable prototyping of microcontroller applications.
Franz Duran INTRODUCTION TO A RDUINO PROGRAMMING & INTERFACING Engr. Franz Duran, MEP-ECE RapidSignal Electronics.
Juan David Rios IMDL FALL 2012 Dr. Eric M. Schwartz – A. Antonio Arroyo September 18/2012.
Material taken from Robotics with the Boe-Bot
ALL TERRAIN ROBOT 1 Wilmer Arellano. The Client’s Need  Verbally presented at class time.  Modify the All Terrain Manual Robot into an autonomous Gripper.
Processing TYWu. Where can I download? 2.0b9 Windows 32-bit.
ARDUINO 1. Basics  Comments  /* * Blink * * The basic Arduino example. Turns on an LED on for one second, * then off for one second, and so on... We.
ROBOTIC ARM 2 Wilmer Arellano © Hardware  Next slide shows sensor connection to analog pin 0 and Motor 1 connection. Lecture is licensed under.
Cone of Safety around a Crane Hook
Basic Circuits – Lab 5 Wireless Networking Xmedia Spring 2011.
Photoresistor resistance changes dramatically with light level living with the lab Using Photoresistors with an Arduino © 2011 LWTL faculty team.
Introduction to EV3. Many Different Types of Robots Snake Robot.
Servo Motor Control Using Arduino Instructor: Dr Matthew Khin Yi Kyaw.
IR Object Detection living with the lab IR light from LED IR light reflected off object IR LED IR receiver Infrared (IR) light leaving an LED reflects.
Lecture 9: Introduction to Arduino Topics: Arduino Fundamentals, Bean Date: Mar 22, 2016.
Programming in Arduino Materials:Arduino Board Casperelectronics Pre Pres. Notes Photos from workshop?
Arduino DC Motor Motion Control Instructor: Dr Matthew Khin Yi Kyaw.
Arduino + Bluetooth TYWu. Connection Arduino + Bluetooth Module.
Autonomous Wheelchair Tyler Morton & Ben Hoerst Senior Design Advisor: Dr. Stanislaw Legowski Project Advisor: Dr. Steven Barrett ECE Senior Design.
Istituto Tecnico Industriale A.Monaco EURLAB Control a Servo Motor If you want to swing an robot arm or … steer a robot you need a special motor (Servo).
A microcontroller-based system for multi sensor monitoring and messaging via GSM network Bachelor thesis Angelakis Vaios Supervisor:Kazarlis S.
Arduino “Getting Started” Instructor : Dr Matthew Miss Khin Yi Kyaw
Pulse-Width Modulation: Simulating variable DC output
Ultrasonic Sensor TYWu.
Robotics Grant Agreement No LLP UK-LEONARDO-LMP Project acronym: CLEM Project title: Cloud services for E-Learning in Mechatronics Technology.
Pulse Width Modulation Instructor Dr Matthew Khi Yi Kyaw.
Robotics Grant Agreement No LLP UK-LEONARDO-LMP Project acronym: CLEM Project title: Cloud services for E-Learning in Mechatronics Technology.
Dr. Kyung Eun Park Summer 2017
Val Manes Department of Math & Computer Science
DHT 11 Sensor Connect the sensor with Arduino board like picture below. Download DHT11 Sensor library from
CS4101 Introduction to Embedded Systems Lab 10: Tasks and Scheduling
Program the robotic arm
Sensors with Arduino A Microcontroller.
Sensors with Arduino A Microcontroller.
Arduino Part 1 Topics: Microcontrollers Programming Basics
Arduino Uno and sensors
‘SONAR’ using Arduino & ultrasonic distance sensor
Analog Input through POT
Roller Coaster Design Project
Maxbotix Ultrasonic Distance Sensor
Schedule 8:00-11:00 Workshop: Arduino Fundamentals
Ultrasonic Distance Sensor
Servos and Stepper Motors
The George Washington University Electrical & Computer Engineering Department ECE 1020 Dr. S. Ahmadi Lab 1.
CTY SAR FCPS Shawn Lupoli, Elliot Tan
Arduino 7 Segment Display Lab
Arduino程式範例.
CTY SAR FCPS Alexander Velikanov
Presentation transcript:

Infrared Proximity Sensors & Liquid Crystal Display Instructor Dr Matthew Khin Yi Kyaw

What is proximity sensor? It is able to measure and detect the nearby object, within the specified range. The output of the sensor is analog. The analog output varies from 3.1V at 10cm to 0.3V at 80cm. The input is from 4.5 to 5.5V.

1.Vout 2.Ground 3.supply GP2Y0A21K.

Code 1 int sensorP=A0; int value=0; void setup( ) { Serial.begin(9600); } void loop() { value= analogRead(sensorP); Serial.println(value1); delay(100); }

Download the sharp distance sensor library source from Place the DistanceGP2Y0A21YK folder in Arduino 1.0 “libraries” folder. Open file Examples Distance centimeter

What is Liquid Crystal Display?

Liquid Crystal Display and Keypad Place the LCD and keypad shield on top of the Arduino, check the pin numbers to mount it properly. Change the port number as Liquid Crystal lcd (8,9,4,5,6,7) Implement the Code-4 compile, download how the input keypad works Connect the Proximity Sensor with the Arduino on Analog A2. Read the distance sensor reading and display it on the LCD. The first line should display “Distance Sensor” The second line should display Range= cm

software Arduino LCD displaly Hello World Copy code 4 from handout

References \Arduino Programming Notebook" by - by Brian W. Evans. 7. Beginning Android ADK with Arduino by Mario Bohmer Computational Principles of Mobile Robotics by from Dudek and Jenkin.