Tutorial 1. Introduction to robot

Size: px
Start display at page:

Download "Tutorial 1. Introduction to robot"

Transcription

1 Tutorial 1. Introduction to moway robot 1

2 Index INTRODUCTION... 2 MOWAY ROBOT... 2 MOWAY PERSON COMPARISON... 6 HEARING SENSE EXAMPLE VISION EXAMPLE TOUCH SENSE EXAMPLE BALANCE SENSE EXAMPLE MORE INFORMATION

3 INTRODUCTION In this tutorial the moway robot will be introduced. If you didn t know moway, this is the best way to know this robot, what its characteristics are and how it works. In the course of this tutorial, sensors and actuators of the robot will be described and we will see how we can use them to perform several tasks. The moway robot is compared with a person for learning the new concepts of robotics. In addition to this, some questions will be proposed for moway to solve them using its resources. The solution of each question is explained on a text diagram. This diagram consists of the strategy that the programmer has to follow. In order to become familiar with moway programming, the MowayWorld flowchart diagram is included in the solution. MowayWorld is the software to program the moway robot in a graphical way. In the moway website ( you will find several examples for learning how to design MowayWorld diagrams and programming. MOWAY ROBOT moway is a programmable robot with sensors and actuators. Let s explain what mean all these words. Question: What is a robot? Answer: A robot is a machine that performs a task autonomously, which means that it doesn t need to be controlled by a person. They make our life easier because they perform tasks that can be difficult, tedious, or dangerous for human beings. Robots can be found on industries, hospitals, space, or even at home. 2

4 Question: What does programmable mean? Answer: A robot needs a program to work autonomously. A program is a sequence of steps or instructions to order the robot what to do in every moment. A robot can be designed to do just one task. For example, a vacuum cleaning robot is designed just for the task of vacuuming the floor. The program could be something like this: Turn on the vacuum Go straight Did you reach a wall? NO YES Rotate On the other hand, a programmable robot allows to modify its program in order to change its performing for adapting to different tasks. Imagine that we could connect that vacuum cleaning robot to a computer and download into the robot different programs. We could choose the functionality of this robot depending on the downloaded program. For example one program would vacuum the floor, another program would mow the lawn, etc. As we will see further, moway robot can be programmed for doing a lot of tasks, such as: Tracking a line Pushing objects Avoid obstacles

5 Summary: ROBOT Machine that performs a task autonomously. PROGRAMMABLE The robot allows to modify its program for different tasks. Question: What is a sensor? Answer: A sensor is a device that allows the robot to know the environment that surrounds it. It is something similar to our senses. In the case of the vacuum cleaning robot, it needs sensors to detect when it reaches the wall and then rotate. Thanks to the sensors, the moway robot can see, hear and feel. This makes it possible for the robot to stop when it reaches and obstacle, go forward when it detects a sound, turn on the light when it passes through a tunnel, etc. These are the sensors of moway: Sensor of moway Function A person uses Light sensor Detect level of brightness Eyes 2 line sensors Detect colours Eyes 4 obstacle sensors Detect the distance to an object Eyes, hands Microphone Detect the noise level Ear Temperature sensor Detect the environment temperature Skin Accelerometer Detect inclinations and forces Sense of balance 4

6 Question: What is an actuator? Answer: An actuator is a device that allows the robot to perform a function. Taking into account the example of the vacuum cleaning robot, its actuators are the wheels to move around the room, the motor to vacuum and the lights that indicate that it is working. In our case, moway has actuators for moving, emitting sounds, etc. In this table you can check them: Actuator of moway Function A person uses Wheels Move Legs Speaker Emit sounds Voice Lights (LEDs) Illuminate and indicate - Summary: SENSOR Device that allows the robot to know the environment that surrounds it. ACTUATOR Device that allows the robot to perform a function. 5

7 MOWAY PERSON COMPARISON As we have already seen, moway robot sensors and actuators can be compared with some human characteristics. Robot sensors receive information from the environment. This information is collected by the microprocessor, as it was the brain of moway. Then, depending on the collected information, the robot can active their actuators that the task needs. In order to understand this, let s see an example with a person. Imagine that a ball is thrown towards you. Your eyes see it and they send to your brain this information (a ball is going to hit you). Immediately your brain sends an order to your legs for dodging the ball. In this example the sensors would be your eyes, the microprocessor is your brain and the actuators are your legs. Here you can see a diagram of the moway devices. Sensors Obstacle sensors Temperature sensor Light sensor Accelerometer Line sensors Brain Microprocessor Speaker Lights Wheels Actuators 6

8 Person moway robot Brain Microprocessor Legs Wheels Ear Microphone Voice Speaker Eyes Light sensor, camera 7

9 Sense of balance Accelerometer Feeding Battery recharge Sense of touch Obstacle sensors Communication Radiofrequency In the following examples we will see how to use these devices to make the robot perform several tasks. Light sensor, microphone, obstacle sensors and accelerometer will be used. The actuators used are wheels and lights (LEDs). Once you understand these devices, you can design your own applications and use other sensors and actuators (for example line sensors, temperature sensor, speaker, or whatever you can imagine). In order to learn how to program the robot, visit the moway web page to find videotutorials and programming examples. 8

10 MOWAY MOVING EXAMPLE Imagine that you have a map with a route that you have to follow. If you wanted to reach the destination, you should move following a series of indications. For example: Go straight for 20 steps Rotate to right Go straight for 10 steps Rotate to left Go straight for 15 steps 9

11 Question: How can we make moway to follow a route? Answer: The wheels allow moway to go forward, backward and rotate in order to move around. In addition, it is possible to configure these movements to cover a specific distance or time. Por ejemplo, vamos a trazar la misma ruta que la explicada antes. En el caso de moway, en vez de contar los pasos, lo haremos en centímetros. Los giros pueden ser sobre el centro del robot, de 90º (un ángulo recto). For example, we will tell moway to follow the previously described route. The robot doesn t have legs, so that instead of counting steps, it will count centimetres. Rotations can be done over the center of the robot, of 90º (right angle). Diagram Go straight 20 cm Rotate right 90º Go straight 10 cm Rotate left 90º Go straight 15 cm 10

12 HEARING SENSE EXAMPLE In an athletics race, runners start when they hear the sound of the beginning shoot. Question: How could we make the robot to start going straight when it hears a sound? Answer: moway robot has a microphone inside. As you already know, a microphone is used to detect sounds. For example, the microphone of a singer collects the voice in order to amplifying it and be reproduced through the speakers. We can make moway to listen to the surroundings. If the robot hears a sound (the microphone detects the sound) then moway will start to go straight. Diagram Listen Did I hear the sound? NO YES Go straight 11

13 VISION EXAMPLE Human vision works basically as follows: light is reflected on the objects that surround us. This reflected light reaches our eyes, which transforms it into an electric impulse. Finally this impulse is received by the brain, which makes that we see the image that reaches to our eyes. Question: Let s see an example of moway turning on its front light when we turn off the light of the room. How can moway do this? Answer: moway robot has a device that allows it to detect the level of brightness of the environment. This device is the light sensor. As our eyes do, the light sensor transforms the light that it receives into an electric signal. The higher the light level is, the higher this electric signal is. The microprocessor and the electronic circuits work as the brain because they receive the electric signal and measure its level. Light sensor Front light 12

14 Diagram This program consists of a closed loop, that is, it doesn t have an end. This is necessary because the robot has to be always checking if the level of light changes. Turn on the front light YES Is the room dark? NO Turn off the front light 13

15 TOUCH SENSE EXAMPLE Question: Imagine that you are in a room with a blindfold on your eyes. How would you get out of the room without taking off the blindfold? Now imagine that moway is into a space and the space is closed except in one side. How could moway escape? Answer: If you wanted to get out of the room, you would have to touch the walls while you are moving until you find the door. This is shown in the diagram below: Move Touch the wall Did I find the door? NO YES GO Gira OUT a la derecha 90º The moway robot case is similar, but instead of touching the walls to detect the door, it uses the obstacle sensors. These sensors can detect if the robot is close to an object, even without touching it. This object would be the walls of the cage. Obstacle sensors 14

16 Diagram Rotate and go straight Detect wall (obstacle) Did I reached the wall? YES NO Go straight to try to escape 15

17 BALANCE SENSE EXAMPLE The sense of balance is located into our ear. Thanks to this sense we can know when our body is tilted. For example, when you are into a car, your body feels if the road slopes up or down. Question: Depending on the slope of the floor we could want the robot to change its speed. How could moway increase the speed if it goes up and decrease the speed if it goes down? Answer: The sense of balance of moway is performed by its accelerometer. An accelerometer measures the forces on the robot, for example the force of gravity. As the direction of force of gravity has always the same direction, moway can compare its position with the gravity force and know if it is tilted. Let s imagine that moway has an axis drawn from the top to the bottom (green line). This axis tilts with the robot. Apart from that, the force of gravity (red line) always points down, whatever the position of the robot is. When moway is over a horizontal surface the robot axis (green) is in line with the force of gravity (red). So that, the angle formed by these axes is 0º. 16

18 If moway is going up, the robot axis (green) will tilt from the gravity direction (red). For example they could form an angle of 30º. In the case of moway is going down the robot axis (green) will tilt from the gravity direction, but in this case the formed angle will be negative, for example -30º. Let s see an example of how we can adapt the speed of moway to the slope of the floor. If the slope is upwards moway will increase the speed, so that it s easier to go up. If the slope is downwards moway will brake (decrease the speed) to avoid losing control. The speed of moway is set by the power of its motors, that is: If we want the maximum speed, we will have to select a speed of 100% (100% of the power of the motors). If we want a medium speed, we can select for example 50% of the power of the motors. If we want a low speed, we can select for example 30% of the power of the motors. 17

19 Diagram Detect tilt Backward tilt? YES 100% speed NO Forward tilt? YES 30% speed NO 0 50% speed Av anz ar rect o 15 cm 18

20 MORE INFORMATION If you want to start with moway you can find more tutorials and practices in the webpage. This is the best way to learn about robotics, programming and many other things

Introduction to programming moway

Introduction to programming moway moway Contents Contents... 1 Introduction... 2 Flowcharts... 2 Movement blocks... 5 Conditionals... 6 Loops... 7 AND/OR Operators... 8 Setting flowcharts in order... 10 www.moway-robot.com 1 Introduction

More information

2/26/2008. Sensors For Robotics. What is sensing? Why do robots need sensors? What is the angle of my arm? internal information

2/26/2008. Sensors For Robotics. What is sensing? Why do robots need sensors? What is the angle of my arm? internal information Sensors For Robotics What makes a machine a robot? Sensing Planning Acting information about the environment action on the environment where is the truck? What is sensing? Sensing is converting a quantity

More information

C.I. La chaîne d information LES CAPTEURS. Page 1 sur 5

C.I. La chaîne d information LES CAPTEURS. Page 1 sur 5 LES CAPTEURS C.I. La chaîne d information The Touch Sensor gives your robot a sense of touch. The Touch Sensor detects when it is being pressed by something and when it is released again. Suggestions for

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions Basic Facts What does the name ASIMO stand for? ASIMO stands for Advanced Step in Innovative Mobility. Who created ASIMO? ASIMO was developed by Honda Motor Co., Ltd., a world

More information

MOWAY BEGINNERS MANUAL

MOWAY BEGINNERS MANUAL BEGINNERS MANUAL Page 2 of 84 Copyright (c) 2013 Bizintek Innova, S.L. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version

More information

understanding sensors

understanding sensors The LEGO MINDSTORMS NXT 2.0 robotics kit includes three types of sensors: Ultrasonic, Touch, and Color. You can use these sensors to build a robot that makes sounds when it sees you or to build a vehicle

More information

North Texas FLL Coaches' Clinics. Beginning Programming October 2014. Patrick R. Michaud [email protected] republicofpi.org

North Texas FLL Coaches' Clinics. Beginning Programming October 2014. Patrick R. Michaud pmichaud@pobox.com republicofpi.org North Texas FLL Coaches' Clinics Beginning Programming October 2014 Patrick R. Michaud [email protected] republicofpi.org Goals Learn basics of Mindstorms programming Be able to accomplish some missions

More information

Effective Use of Android Sensors Based on Visualization of Sensor Information

Effective Use of Android Sensors Based on Visualization of Sensor Information , pp.299-308 http://dx.doi.org/10.14257/ijmue.2015.10.9.31 Effective Use of Android Sensors Based on Visualization of Sensor Information Young Jae Lee Faculty of Smartmedia, Jeonju University, 303 Cheonjam-ro,

More information

Quick Start Guide to computer control and robotics using LEGO MINDSTORMS for Schools

Quick Start Guide to computer control and robotics using LEGO MINDSTORMS for Schools Quick Start Guide to computer control and robotics using LEGO MINDSTORMS for Schools www.lego.com/education/mindstorms LEGO, the LEGO logo and MINDSTORMS are trademarks of the LEGO Group. 2004 The LEGO

More information

2 WIRE video door entry system

2 WIRE video door entry system J J N P CLASSE 00 VE WIRE video door entry system 5 Description Front view WIRE handsfree colour video handset with inductive loop, preset for different types of installations, depending on the accessories

More information

Classroom Activities for the Busy Teacher: EV3

Classroom Activities for the Busy Teacher: EV3 Classroom Activities for the Busy Teacher: EV3 Table of Contents Chapter 1: Introduction... 1 Chapter 2: RileyRover Basics... 5 Chapter 3: Keeping Track... 13 Chapter 4: What is a Robot?... 17 Chapter

More information

Lego Robot Tutorials Touch Sensors

Lego Robot Tutorials Touch Sensors Lego Robot Tutorials Touch Sensors Bumper Cars with a Touch Sensor With a touch sensor and some robot programming, you can make your robot search its way around the room. It can back up and turn around

More information

Tutorial for Programming the LEGO MINDSTORMS NXT

Tutorial for Programming the LEGO MINDSTORMS NXT Tutorial for Programming the LEGO MINDSTORMS NXT Table of contents 1 LEGO MINDSTORMS Overview 2 Hardware 2.1 The NXT Brick 2.2 The Servo Motors 2.3 The Sensors 3 Software 3.1 Starting a Program 3.2 The

More information

Classroom Setup... 2 PC... 2 Document Camera... 3 DVD... 4 Auxiliary... 5. Lecture Capture Setup... 6 Pause and Resume... 6 Considerations...

Classroom Setup... 2 PC... 2 Document Camera... 3 DVD... 4 Auxiliary... 5. Lecture Capture Setup... 6 Pause and Resume... 6 Considerations... Classroom Setup... 2 PC... 2 Document Camera... 3 DVD... 4 Auxiliary... 5 Lecture Capture Setup... 6 Pause and Resume... 6 Considerations... 6 Video Conferencing Setup... 7 Camera Control... 8 Preview

More information

Tennessee State University

Tennessee State University Tennessee State University Dept. of Physics & Mathematics PHYS 2010 CF SU 2009 Name 30% Time is 2 hours. Cheating will give you an F-grade. Other instructions will be given in the Hall. MULTIPLE CHOICE.

More information

Physics: Principles and Applications, 6e Giancoli Chapter 2 Describing Motion: Kinematics in One Dimension

Physics: Principles and Applications, 6e Giancoli Chapter 2 Describing Motion: Kinematics in One Dimension Physics: Principles and Applications, 6e Giancoli Chapter 2 Describing Motion: Kinematics in One Dimension Conceptual Questions 1) Suppose that an object travels from one point in space to another. Make

More information

Video Baby Monitor System. User Guide

Video Baby Monitor System. User Guide Video Baby Monitor System User Guide What s inside Welcome!... 2 Getting started... 3 Tour of the system... 7 Everyday use...13 Cameras... 14 Motion/Alerts... 18 Recording... 21 Playing Back Pictures and

More information

2After completing this chapter you should be able to

2After completing this chapter you should be able to After completing this chapter you should be able to solve problems involving motion in a straight line with constant acceleration model an object moving vertically under gravity understand distance time

More information

Simple Machines. What are simple machines?

Simple Machines. What are simple machines? Definitions to know: Simple Machines Work done when an applied force causes an object to move in the direction of the force Energy ability to cause change; can change the speed, direction, shape, or temperature

More information

Analog control unit for mobile robots

Analog control unit for mobile robots Analog control unit for mobile robots Soldering kit for experimentation For Fischertechnik robots and others Most diverse functions Requires no programming Patented sensor technology Summary We are pleased

More information

Definitions. A [non-living] physical agent that performs tasks by manipulating the physical world. Categories of robots

Definitions. A [non-living] physical agent that performs tasks by manipulating the physical world. Categories of robots Definitions A robot is A programmable, multifunction manipulator designed to move material, parts, tools, or specific devices through variable programmed motions for the performance of a variety of tasks.

More information

Data Sheet. Remote Presence for the Enterprise. Product Overview. Benefits of Video Collaboration Robots

Data Sheet. Remote Presence for the Enterprise. Product Overview. Benefits of Video Collaboration Robots Data Sheet Remote Presence for the Enterprise Product Overview irobot Ava 500 Video Collaboration Robot builds on the value of telepresence by extending the power of in-person beyond fixed environments

More information

Canalis. CANALIS Principles and Techniques of Speaker Placement

Canalis. CANALIS Principles and Techniques of Speaker Placement Canalis CANALIS Principles and Techniques of Speaker Placement After assembling a high-quality music system, the room becomes the limiting factor in sonic performance. There are many articles and theories

More information

TETRIX Add-On Extensions. Encoder Programming Guide (ROBOTC )

TETRIX Add-On Extensions. Encoder Programming Guide (ROBOTC ) Introduction: In this extension, motor encoders will be added to the wheels of the Ranger Bot. The Ranger Bot with Encoders will be programmed to move forward until it detects an object, turn 90, and move

More information

Physics 11 Assignment KEY Dynamics Chapters 4 & 5

Physics 11 Assignment KEY Dynamics Chapters 4 & 5 Physics Assignment KEY Dynamics Chapters 4 & 5 ote: for all dynamics problem-solving questions, draw appropriate free body diagrams and use the aforementioned problem-solving method.. Define the following

More information

Physics 2A, Sec B00: Mechanics -- Winter 2011 Instructor: B. Grinstein Final Exam

Physics 2A, Sec B00: Mechanics -- Winter 2011 Instructor: B. Grinstein Final Exam Physics 2A, Sec B00: Mechanics -- Winter 2011 Instructor: B. Grinstein Final Exam INSTRUCTIONS: Use a pencil #2 to fill your scantron. Write your code number and bubble it in under "EXAM NUMBER;" an entry

More information

Make your own Temple Run game

Make your own Temple Run game Make your own Temple Run game These instructions will talk you through how to make your own Temple Run game with your pupils. The game is made in Scratch, which can be downloaded here: http://scratch.mit.edu

More information

Chapter 3 Falling Objects and Projectile Motion

Chapter 3 Falling Objects and Projectile Motion Chapter 3 Falling Objects and Projectile Motion Gravity influences motion in a particular way. How does a dropped object behave?!does the object accelerate, or is the speed constant?!do two objects behave

More information

How To Turn On A Robot On A Computer On A Black Box On A Pc Or Macbook

How To Turn On A Robot On A Computer On A Black Box On A Pc Or Macbook Written Directions for EV3 Line Follow (Heaviside Algorithm) Description: Given a black line and the light sensor on the EV3 robot, we want to have the light sensor read values from the reflected light.

More information

Sensors and Cellphones

Sensors and Cellphones Sensors and Cellphones What is a sensor? A converter that measures a physical quantity and converts it into a signal which can be read by an observer or by an instrument What are some sensors we use every

More information

9. The kinetic energy of the moving object is (1) 5 J (3) 15 J (2) 10 J (4) 50 J

9. The kinetic energy of the moving object is (1) 5 J (3) 15 J (2) 10 J (4) 50 J 1. If the kinetic energy of an object is 16 joules when its speed is 4.0 meters per second, then the mass of the objects is (1) 0.5 kg (3) 8.0 kg (2) 2.0 kg (4) 19.6 kg Base your answers to questions 9

More information

Stereoscopic 3D Digital Theater System. Operator Manual (MI-2100)

Stereoscopic 3D Digital Theater System. Operator Manual (MI-2100) Stereoscopic 3D Digital Theater System Operator Manual (MI-2100) -1- All information contained in or disclosed by this document is confidential and propriety to masterimage Co., Ltd. (hereinafter referred

More information

How To Program An Nxt Mindstorms On A Computer Or Tablet Computer

How To Program An Nxt Mindstorms On A Computer Or Tablet Computer NXT Generation Robotics Introductory Worksheets School of Computing University of Kent Copyright c 2010 University of Kent NXT Generation Robotics These worksheets are intended to provide an introduction

More information

The Basics of Robot Mazes Teacher Notes

The Basics of Robot Mazes Teacher Notes The Basics of Robot Mazes Teacher Notes Why do robots solve Mazes? A maze is a simple environment with simple rules. Solving it is a task that beginners can do successfully while learning the essentials

More information

MECE 102 Mechatronics Engineering Orientation

MECE 102 Mechatronics Engineering Orientation MECE 102 Mechatronics Engineering Orientation Mechatronic System Components Associate Prof. Dr. of Mechatronics Engineering Çankaya University Compulsory Course in Mechatronics Engineering Credits (2/0/2)

More information

Can Traffic Accidents be eliminated by Robots?

Can Traffic Accidents be eliminated by Robots? Can Traffic Accidents be eliminated by Robots? Elementary Science and Technology Grade 7 Teaching- learning Module for Unit Light and Sound Abstract This modules leads to a decision making activity related

More information

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine Blender Notes Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine The Blender Game Engine This week we will have an introduction to the Game Engine build

More information

FRC WPI Robotics Library Overview

FRC WPI Robotics Library Overview FRC WPI Robotics Library Overview Contents 1.1 Introduction 1.2 RobotDrive 1.3 Sensors 1.4 Actuators 1.5 I/O 1.6 Driver Station 1.7 Compressor 1.8 Camera 1.9 Utilities 1.10 Conclusion Introduction In this

More information

Parking sensor CISBO RADER SYSTEM USER S MANUAL

Parking sensor CISBO RADER SYSTEM USER S MANUAL CISBO Parking sensor Index! TO USER --------------------------------------------------------------1! PART AND TECH DATA---------------------------------------------2! DISPLAY AND ALARM SOUND-----------------------------------3!

More information

Unit A451: Computer systems and programming. Section 2: Computing Hardware 4/5: Input and Output Devices

Unit A451: Computer systems and programming. Section 2: Computing Hardware 4/5: Input and Output Devices Unit A451: Computer systems and programming Section 2: Computing Hardware 4/5: Input and Output Devices Input and Output devices Candidates should be able to: (a) understand the need for input and output

More information

DS 1722-010B LBT 8546 SINGLE-FAMILY HANDS-FREE COLOUR VIDEO KIT WITH VIDEO DOOR PHONE ANSWERING SERVICE. Ref. 1722/71 USER HANDBOOK

DS 1722-010B LBT 8546 SINGLE-FAMILY HANDS-FREE COLOUR VIDEO KIT WITH VIDEO DOOR PHONE ANSWERING SERVICE. Ref. 1722/71 USER HANDBOOK Mod. 1722 DS 1722-010B LBT 8546 SINGLE-FAMILY HANDS-FREE COLOUR VIDEO KIT WITH VIDEO DOOR PHONE ANSWERING SERVICE Ref. 1722/71 USER HANDBOOK The CD supplied contains the handbook full version with traslation

More information

FOUNDATION. Observing the way different shaped objects such as balls, blocks and tubes move.

FOUNDATION. Observing the way different shaped objects such as balls, blocks and tubes move. SCIENCE FOUNDATION Science Understanding The way objects move depends on a variety of factors, including their size and shape. (ACSSU005) Observing the way different shaped objects such as balls, blocks

More information

Programming LEGO NXT Robots using NXC

Programming LEGO NXT Robots using NXC Programming LEGO NXT Robots using NXC This text programming language derived from C language is bended together with IDE BricxCC on standard firmware LEGO Mindstorms. This can be very convenient for those,

More information

Android Programming Lecture 18: Menus Sensors 11/11/2011

Android Programming Lecture 18: Menus Sensors 11/11/2011 Android Programming Lecture 18: Menus Sensors 11/11/2011 Simple Menu Example Submenu Example Sensors and Actuators Sensors Sensors provide information about the device and its environment Will ignore camera

More information

Lab 3 Microcontroller programming Interfacing to Sensors and Actuators with irobot

Lab 3 Microcontroller programming Interfacing to Sensors and Actuators with irobot 1. Objective Lab 3 Microcontroller programming Interfacing to Sensors and Actuators with irobot In this lab, you will: i. Become familiar with the irobot and AVR tools. ii. Understand how to program a

More information

Using FM. A guide for children and their families on how to use an FM solution with hearing aids

Using FM. A guide for children and their families on how to use an FM solution with hearing aids Using FM A guide for children and their families on how to use an FM solution with hearing aids Congratulations on your new FM solution!! This booklet tells you how to use your FM solution, where to use

More information

innovative, interactive technology for special needs education, corporate presentation systems and digital kiosks

innovative, interactive technology for special needs education, corporate presentation systems and digital kiosks innovative, interactive technology for special needs education, corporate presentation systems and digital kiosks VisiLift the plasma with altitude VisiLift is a fully mobile interactive HD touchscreen

More information

Motion Graphs. It is said that a picture is worth a thousand words. The same can be said for a graph.

Motion Graphs. It is said that a picture is worth a thousand words. The same can be said for a graph. Motion Graphs It is said that a picture is worth a thousand words. The same can be said for a graph. Once you learn to read the graphs of the motion of objects, you can tell at a glance if the object in

More information

Development of Docking System for Mobile Robots Using Cheap Infrared Sensors

Development of Docking System for Mobile Robots Using Cheap Infrared Sensors Development of Docking System for Mobile Robots Using Cheap Infrared Sensors K. H. Kim a, H. D. Choi a, S. Yoon a, K. W. Lee a, H. S. Ryu b, C. K. Woo b, and Y. K. Kwak a, * a Department of Mechanical

More information

SFERA. NEw. 2 wire. audio ViDEO PUSHBUTTON PANELS

SFERA. NEw. 2 wire. audio ViDEO PUSHBUTTON PANELS SFERA NEw 2 wire audio ViDEO PUSHBUTTON PANELS new SFERA TWO personalities FOR ONE SINGLE electronic HEART The QR Code provides direct access to multimedia contents. The service is very easy to use, and

More information

Cerebral Palsy and Visual Impairment

Cerebral Palsy and Visual Impairment CP Factsheet Cerebral Palsy and Visual Impairment Although cerebral palsy mainly causes difficulty with movement, other conditions may also occur. This is because other parts of the brain may also be affected

More information

TV Ears 5.0 Digital & Dual Digital Quick Start Guide

TV Ears 5.0 Digital & Dual Digital Quick Start Guide TV Ears 5.0 Digital & Dual Digital Quick Start Guide Voice Clarifying Circuitry CUSTOM FIT YOUR HEADSET Follow these directions to adjust the width of the headset for your comfort. TV EARS All TV Ears

More information

i3 STC Kit Extension Activities North Carolina

i3 STC Kit Extension Activities North Carolina i3 STC Kit Extension Activities North Carolina Grade: 4th Kit Name: Electrical Circuits Essential Standard(s): (List number, standard, clarifying objectives where appropriate) 4.P.1 Explain how various

More information

PHYS 117- Exam I. Multiple Choice Identify the letter of the choice that best completes the statement or answers the question.

PHYS 117- Exam I. Multiple Choice Identify the letter of the choice that best completes the statement or answers the question. PHYS 117- Exam I Multiple Choice Identify the letter of the choice that best completes the statement or answers the question. 1. Car A travels from milepost 343 to milepost 349 in 5 minutes. Car B travels

More information

Work, Energy and Power

Work, Energy and Power Work, Energy and Power In this section of the Transport unit, we will look at the energy changes that take place when a force acts upon an object. Energy can t be created or destroyed, it can only be changed

More information

IOS EYE4 APP User Manual

IOS EYE4 APP User Manual IOS EYE4 APP User Manual Eye4 App can be downloaded from Google Play (Android) and App Store (IOS). Besides, it can be downloaded from http://www.eye4.so/download/ The below user manual is based on Eye4

More information

Movement Animset Pro v.1.5

Movement Animset Pro v.1.5 Movement Animset Pro v.1.5 Animations description and usage Idle TurnRt90_Loop TurnLt90_Loop TurnRt180 TurnLt180 WalkFwdLoop WalkFwdStart WalkFwdStart180_R WalkFwdStart180_L WalkFwdStart90_L WalkFwdStart90_R

More information

Building Instructions: Maze Robot

Building Instructions: Maze Robot Building Instructions: Maze Robot Basic Design from: Building Robots with Lego Mindstorms Modifications by: David Wang Diagrams and Instructions by: David Wang Diagrams and Instructions generated by: MLCad,

More information

Roanoke Pinball Museum Key Concepts

Roanoke Pinball Museum Key Concepts Roanoke Pinball Museum Key Concepts What are Pinball Machines Made of? SOL 3.3 Many different materials are used to make a pinball machine: 1. Steel: The pinball is made of steel, so it has a lot of mass.

More information

Graphing Motion. Every Picture Tells A Story

Graphing Motion. Every Picture Tells A Story Graphing Motion Every Picture Tells A Story Read and interpret motion graphs Construct and draw motion graphs Determine speed, velocity and accleration from motion graphs If you make a graph by hand it

More information

Your EdVenture into Robotics You re a Programmer

Your EdVenture into Robotics You re a Programmer Your EdVenture into Robotics You re a Programmer Introduction... 3 Getting started... 4 Meet EdWare... 8 EdWare icons... 9 EdVenture 1- Flash a LED... 10 EdVenture 2 Beep!! Beep!!... 12 EdVenture 3 Robots

More information

B) 286 m C) 325 m D) 367 m Answer: B

B) 286 m C) 325 m D) 367 m Answer: B Practice Midterm 1 1) When a parachutist jumps from an airplane, he eventually reaches a constant speed, called the terminal velocity. This means that A) the acceleration is equal to g. B) the force of

More information

Design and Implementation of an Accidental Fall Detection System for Elderly

Design and Implementation of an Accidental Fall Detection System for Elderly Design and Implementation of an Accidental Fall Detection System for Elderly Enku Yosef Kefyalew 1, Abubakr Rahmtalla Abdalla Mohamed 2 Department of Electronic Engineering, Tianjin University of Technology

More information

Work, Energy and Power Practice Test 1

Work, Energy and Power Practice Test 1 Name: ate: 1. How much work is required to lift a 2-kilogram mass to a height of 10 meters?. 5 joules. 20 joules. 100 joules. 200 joules 5. ar and car of equal mass travel up a hill. ar moves up the hill

More information

Curso2012-2013 Física Básica Experimental I Cuestiones Tema IV. Trabajo y energía.

Curso2012-2013 Física Básica Experimental I Cuestiones Tema IV. Trabajo y energía. 1. A body of mass m slides a distance d along a horizontal surface. How much work is done by gravity? A) mgd B) zero C) mgd D) One cannot tell from the given information. E) None of these is correct. 2.

More information

TRIGONOMETRY FOR ANIMATION

TRIGONOMETRY FOR ANIMATION TRIGONOMETRY FOR ANIMATION What is Trigonometry? Trigonometry is basically the study of triangles and the relationship of their sides and angles. For example, if you take any triangle and make one of the

More information

Get to Know Golf! John Dunigan

Get to Know Golf! John Dunigan Get to Know Golf! John Dunigan Get to Know Golf is an initiative designed to promote the understanding the laws that govern ball flight. This information will help golfers develop the most important skill

More information

CIM Computer Integrated Manufacturing

CIM Computer Integrated Manufacturing INDEX CIM IN BASIC CONFIGURATION CIM IN ADVANCED CONFIGURATION CIM IN COMPLETE CONFIGURATION DL CIM A DL CIM B DL CIM C DL CIM C DL CIM B DL CIM A Computer Integrated Manufacturing (CIM) is a method of

More information

Problem Set 1. Ans: a = 1.74 m/s 2, t = 4.80 s

Problem Set 1. Ans: a = 1.74 m/s 2, t = 4.80 s Problem Set 1 1.1 A bicyclist starts from rest and after traveling along a straight path a distance of 20 m reaches a speed of 30 km/h. Determine her constant acceleration. How long does it take her to

More information

This Document Contains:

This Document Contains: Instructional Documents Video Conference >> PolyCom >> VSX 7000 Extension Computing Technology Unit This Document Contains: A Device Description An Installation Guide Instructions for Use Best Practices

More information

Inclined Plane: Distance vs. Force

Inclined Plane: Distance vs. Force 1a Inclined Plane: Distance vs. Force Look at the inclined plane model you built for Card 2. It s a ramp, so it s easy to slide or roll things up and down it. As you noticed, it is a little more difficult

More information

The competition consists an SPL measurement with open doors like in EMMA ESPL.

The competition consists an SPL measurement with open doors like in EMMA ESPL. 1 The ESQL competition format was formed by EMMA Philippines and EMMA Thailand to open a competition arena for those who enjoy listening to good sound quality outside their cars. The competition consists

More information

1. SYSTEM OVERVIEW. 1) Basic Theory of ABS Function 10-3 4891-01

1. SYSTEM OVERVIEW. 1) Basic Theory of ABS Function 10-3 4891-01 10-3 1. SYSTEM OVERVIEW When braking suddenly or braking on slippery roads, the vehicle keeps moving forward but the wheels are locking and not rotating. If these happen, the vehicle may lose stability

More information

The Swivl Solution. Uses. Swivl User Guide. Swivl is more than just video capture, it is a 3-part solution.

The Swivl Solution. Uses. Swivl User Guide. Swivl is more than just video capture, it is a 3-part solution. The Swivl Solution Swivl is more than just video capture, it is a 3-part solution. Swivl Robot Swivl Capture App Swivl Cloud The Swivl Robot works with any tablet device and follows the movement of the

More information

Long Jump Mechanics THE 13 PACE RUN-UP THE LAST 3 STRIDES THE TAKEOFF

Long Jump Mechanics THE 13 PACE RUN-UP THE LAST 3 STRIDES THE TAKEOFF Long Jump Mechanics Two major techniques are used in long jumping: the hang technique and the hitch-kick technique. In the hang technique, the jumper appears to temporarily hang in the air during flight.

More information

Developing a Sewer Inspection Robot through a Mechatronics Approach

Developing a Sewer Inspection Robot through a Mechatronics Approach Developing a Sewer Inspection Robot through a Mechatronics Approach Alireza. Hadi, Gholamhossein. Mohammadi Abstract Sewerage is a harsh environment which requires periodically inspection. The inspection

More information

Exercises for older people

Exercises for older people Exercise for older people Exercises for older people Sitting Getting started If you ve not done much physical activity for a while, you may want to get the all-clear from a GP before starting. For the

More information

Cycle Safety. Some tips on safer cycling. Údarás Um Shábháilteacht Ar Bhóithre Road Safety Authority

Cycle Safety. Some tips on safer cycling. Údarás Um Shábháilteacht Ar Bhóithre Road Safety Authority Cycle Safety Some tips on safer cycling Údarás Um Shábháilteacht Ar Bhóithre Road Safety Authority Be safe For further information on safe cycling, please look at the Rules of the Road website at www.rulesoftheroad.ie

More information

Figure 3. Pressure taps distribution around the bus model (64 pressure taps)

Figure 3. Pressure taps distribution around the bus model (64 pressure taps) Figure1. Double deck bus into the wind tunnel The aerodynamic balance, built by the authors according Tusche [11], is based on strain gage type cells arranged as a double Wheatstone bridge acquiring simultaneously

More information

Work Energy & Power. September 2000 Number 05. 1. Work If a force acts on a body and causes it to move, then the force is doing work.

Work Energy & Power. September 2000 Number 05. 1. Work If a force acts on a body and causes it to move, then the force is doing work. PhysicsFactsheet September 2000 Number 05 Work Energy & Power 1. Work If a force acts on a body and causes it to move, then the force is doing work. W = Fs W = work done (J) F = force applied (N) s = distance

More information

Questions: Does it always take the same amount of force to lift a load? Where should you press to lift a load with the least amount of force?

Questions: Does it always take the same amount of force to lift a load? Where should you press to lift a load with the least amount of force? Lifting A Load 1 NAME LIFTING A LOAD Questions: Does it always take the same amount of force to lift a load? Where should you press to lift a load with the least amount of force? Background Information:

More information

TH2. Input devices, processing and output devices

TH2. Input devices, processing and output devices TH2. Input devices, processing and output devices http://www.bbc.co.uk/schools/gcsebitesize/ict/ Input devices allow us to enter raw data into a computer. The computer processes the data and then produces

More information

Hidden Camera Surveillance

Hidden Camera Surveillance Hidden Camera Surveillance Tel 1300 763235 3G HD Solar Camera Live view in real time from any web enabled device from wherever you are. Unable to run cable? No power available? It really doesn t matter!

More information

Stop Alert Flasher with G-Force sensor

Stop Alert Flasher with G-Force sensor Stop Alert Flasher with G-Force sensor Stop Alert module creates brake light flashing effect to catch attention of the drivers behind to avoid dangerous rear end collision. The flasher module is a state

More information

VIDEO COMMUNICATION SYSTEM-TECHNICAL DOCUMENTATION. Tracking Camera (PCSA-CTG70/CTG70P) PCS-G70/G70P All

VIDEO COMMUNICATION SYSTEM-TECHNICAL DOCUMENTATION. Tracking Camera (PCSA-CTG70/CTG70P) PCS-G70/G70P All Tracking Camera () PCS-G70/G70P All Introduction The Tracking Camera is a camera unit dedicated to the PCS-G70/G70P. It provides the Voice-Directional Detection function, the Face Recognition function,

More information

Autonomous Advertising Mobile Robot for Exhibitions, Developed at BMF

Autonomous Advertising Mobile Robot for Exhibitions, Developed at BMF Autonomous Advertising Mobile Robot for Exhibitions, Developed at BMF Kucsera Péter ([email protected]) Abstract In this article an autonomous advertising mobile robot that has been realized in

More information

Table of Contents. Use. Troubleshooting. Setup. Welcome. 11 How to arm/disarm system/camera(s) 19 Sync Module setup issues. 3 Installing the Blink app

Table of Contents. Use. Troubleshooting. Setup. Welcome. 11 How to arm/disarm system/camera(s) 19 Sync Module setup issues. 3 Installing the Blink app User Guide Table of Contents Welcome Setup Use Troubleshooting 2 What s in the box 2 What you need 3 Installing the Blink app 4 Setting up the Sync Module 5 Connecting the Sync Module to Your Wi-Fi 7 Adding

More information

A Surveillance Robot with Climbing Capabilities for Home Security

A Surveillance Robot with Climbing Capabilities for Home Security Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 2, Issue. 11, November 2013,

More information

EXPERIMENT O-6. Michelson Interferometer. Abstract. References. Pre-Lab

EXPERIMENT O-6. Michelson Interferometer. Abstract. References. Pre-Lab EXPERIMENT O-6 Michelson Interferometer Abstract A Michelson interferometer, constructed by the student, is used to measure the wavelength of He-Ne laser light and the index of refraction of a flat transparent

More information

Frequently Asked Questions

Frequently Asked Questions Frequently Asked Questions Basic Facts What does the name ASIMO stand for? ASIMO stands for Advanced Step in Innovative Mobility. Who created ASIMO? ASIMO was developed by Honda Motor Co., Ltd., a world

More information

PS 29M DUAL CHANNEL BELTPACK IN METAL CASE

PS 29M DUAL CHANNEL BELTPACK IN METAL CASE PS 29M DUAL CHANNEL BELTPACK IN METAL CASE USER MANUAL October 2013 This product is designed and manufactured by: ASL Intercom BV Zonnebaan 42 3542 EG Utrecht The Netherlands Phone: +31 (0)30 2411901 Fax:

More information

Copyright 2010 ALFANO S.A. All rights reserved.

Copyright 2010 ALFANO S.A. All rights reserved. Manual of use 1 Copyright 2010 ALFANO S.A. All rights reserved. The reproduction, transfer, distribution or storage of part of or the totality of the contents of this document in whatever form is prohibited

More information

Introduction to Videoconferencing

Introduction to Videoconferencing Introduction to Videoconferencing 2 Table of Contents Introduction... 4 Videoconferencing Etiquette... 5 What to wear... 5 Unnecessary Noise... 5 Guidelines for a successful videoconference... 6 Using

More information

Friction and Gravity. Friction. Section 2. The Causes of Friction

Friction and Gravity. Friction. Section 2. The Causes of Friction Section 2 Friction and Gravity What happens when you jump on a sled on the side of a snow-covered hill? Without actually doing this, you can predict that the sled will slide down the hill. Now think about

More information

Experiment 5: Magnetic Fields of a Bar Magnet and of the Earth

Experiment 5: Magnetic Fields of a Bar Magnet and of the Earth MASSACHUSETTS INSTITUTE OF TECHNOLOGY Department of Physics 8.02 Spring 2005 Experiment 5: Magnetic Fields of a Bar Magnet and of the Earth OBJECTIVES 1. To examine the magnetic field associated with a

More information

Mechanical Reasoning Review

Mechanical Reasoning Review Mechanical Reasoning Review Work can be made easier or faster through practical applications of simple and/or compound machines. This is called mechanical advantage - in other words, using the principal

More information