Basic Sensors – Laser Distance Sensor

Slides:



Advertisements
Similar presentations
A Versatile and Safe Mobility Assistant * Kim, Min-Jung 2001/6/12 Special Topics in Robotics Design and Control of Devices for Human-Movement Assistance.
Advertisements

What should I do first Young Joon Kim MSRDS First Beginner Course - STEP1.
HelloApps.com What should I do first Young Joon Kim MSRDS First Beginner Course - STEP1.
LabVIEW Basics Review LabVIEW Robotics Fundamentals.
Obstacle Detection Introductory Presentation. Opening Activity If you were blindfolded, what senses would you use to find things in the room?
Elegant avoiding of obstacle Young Joon Kim MSRDS First Beginner Course – STEP5.
VPL basic – data and variables Young Joon Kim MSRDS First Beginner Course – STEP6.
NEURO-FUZZY LOGIC 1 X 0 A age Crisp version for young age.
First glance of robotics course (VPL) Young Joon Kim MSRDS First Beginner Course – STEP3.
My first robot programming - Simple “Go” Young Joon Kim MSRDS First Beginner Course – STEP4.
BEGINNER EV3 PROGRAMMING LESSON By: Droids Robotics Topics Covered: Touch Sensor.
SPL basic – Build Simulation Environment Young Joon Kim SPL First Beginner Course – 03.
Obstacle Detection. In the previous program the robot moves forward and then checks for something in the way. As we observed it only checks for things.
Start Anaglyph Programming Young Joon Kim Stereoscopic & Anaglyph Course.
NASA Robotic Mining Competition. Controllers Arduino Mega - controls motors and sensors Raspberry Pi - Linux based computer that has the autonomous.
Request Dispatching for Cheap Energy Prices in Cloud Data Centers
Virtual Environments and Computer Graphics
Điều trị chống huyết khối trong tai biến mạch máu não
HF NOISE FILTERS PERFORMANCE
L-Systems and Affine Transformations
Current State of Japanese Economy under Negative Interest Rate and Proposed Remedies Naoyuki Yoshino Dean Asian Development Bank Institute Professor Emeritus,
Face Recognition Monday, February 1, 2016.
HERMESでのHard Exclusive生成過程による 核子内クォーク全角運動量についての研究
Hui Wang†*, Canturk Isci‡, Lavanya Subramanian*,
Optomechanics with atoms
Advisor: Chiuyuan Chen Student: Shao-Chun Lin
SiW-ECAL Beam Test 2015 Kick-Off meeting
Chapter 6 并发:死锁和饥饿 Operating Systems: Internals and Design Principles
Ch48 Statistics by Chtan FYHSKulai
Measure Twice and Cut Once: Robust Dynamic Voltage Scaling for FPGAs
Online Learning: An Introduction
Quantum-classical transition in optical twin beams and experimental applications to quantum metrology Ivano Ruo-Berchera Frascati.
The Toroidal Sporadic Source: Understanding Temporal Variations
FW 3.4: More Circle Practice
Decision Procedures Christoph M. Wintersteiger 9/11/2017 3:14 PM
Robotics Training For The Riverside Robotics Society
BEGINNER PROGRAMMING LESSON
“RedBoard” / Arduino Uno Ardumoto Motor Driver Shield
What should I do first MSRDS First Beginner Course - STEP1
IMDL Presentation by Li Yang.
Development Commitment Package
Introductory Presentation
BEGINNER EV3 PROGRAMMING Lesson
BEGINNER EV3 PROGRAMMING Lesson
Introductory Presentation
Obstacle Detection Ultrasonic Sensor.
Introductory Presentation
BEGINNER PROGRAMMING LESSON
BEGINNER PROGRAMMING LESSON
CajunBot: Tech Challenges
Young Joon Kim SPL basic – Quick Start SPL First Beginner Course – 01 Young Joon Kim
VPL Patterns – Multi-Action Activity
My first robot programming - Simple “GoTo”
SPL GraphicSprite Command
Introductory Presentation
VPL Patterns – Loop Pattern using Notification
Young Joon Kim SPL basic – Quick Start SPL First Beginner Course – 01 Young Joon Kim
SPL Programming – While Loop Pattern
First glance of robotics course (SPL)
My first robot programming - Simple “Go”
SPL Programming – Procedure Pattern
Pose Sensors – Detect Orientation
Obstacle Detection.
Obstacle Detection.
Finding unknown angles of triangles
Basic Sensors – RFID Sensor
My first robot programming - Simple “GoTo”
My first robot programming - Simple “GoFor”
SPL basic – Script types
MATLAB Interface Programming
Presentation transcript:

Basic Sensors – Laser Distance Sensor Robotics Beginner Course – 03 Young Joon Kim http://www.helloapps.com

Topics Add LRF sensor Detect distances Reaction for the detection

Add LRF Sensor

Add LRF sensor Start with basic obstacle and base platform

Add LRF sensor Add “AddLaserRangeFinderEntity” from the “Entities” tab Add “FlushScript” command

Add LRF sensor Run script

Add LRF sensor Save script as follows /Script/LRF1.txt

Detecting distances

Laser Sensor Data DistanceMeasurements Array of 361 distances For 180 angles, Detect distances by 0.5 degrees 180th 270th 90th 0th index 360th Millimeter unit, max distance is 8m(8000 millimeter)

Laser Sensor Data Distance for the front direction SensorData.DistanceMeasurements[180] Distance for the right 45 degrees direction SensorData.DistanceMeasurements[90] Distance for the left 45 degrees direction SensorData.DistanceMeasurements[270] Distance for the right direction SensorData.DistanceMeasurements[0] Distance for the left direction SensorData.DistanceMeasurements[360]

Detecting distances VPL Diagram

Detecting distances Run diagram

Reaction for the detection

Reaction for the contact VPL diagram

Reaction for the contact Run diagram