UNIT1. Keywords page 13-14

Size: px
Start display at page:

Download "UNIT1. Keywords page 13-14"

Transcription

1 UNIT1 Keywords page What is a Robot? A robot is a machine that can do the work of a human. Robots can be automatic, or they can be computer-controlled. Robots are a part of everyday life. Most robots today are used for jobs that repeat the same thing. Activity 2 What can a robot be used for in everyday life? Some robots are used for: fun and entertainment like playing computer games. building things like cars. carrying heavy things from one place to another. They can also be used in the military, in space exploration and for medical applications. Robots can sense things and respond to their senses robot can be programmed to think on its own. In a robot, the sensors are the inputs. For example, a robot can sense light and sound, the way your eyes and ears do. The most important electronic part of the robot is the brain It allows the robot to interact with things around it. It is where all the thinking happens. A robot has three main parts: 1. Sensors (Input) 2. Control System (Brain) 3. Actuator/Output: Sensors (Input): tell the robot about its surroundings. Control System (Brain) :A control system is a device that manages or controls the behavior of other systems. These act as the brain in any robotic system. They come in various shapes, types and sizes.

2 Actuator/Output: An actuator is the part of the robot that performs a physical action. Here are some examples of different types of effectors:

3 Edison Robot You will use a set of commands or instructions to teach Edison to understand its input and control its output. (program.) Microcontrollers The microcontroller is the main control unit of any automatic system or device. Edison s microcontroller is shown in the following figure.

4 Programming Software Robots can be programmed using either a visual programming(edware) or a text-based interface.(edpy). In visual programming, you can o use elements graphically to create programs. o You can also drag and drop program elements, click, use menus, forms, dialogue boxes. o This type of programming helps new users to understand programming easily. Activity 5 +6 Identify what the above program does? The above program is a line tracking program. It starts by tracking a line. Loop Starts If line is found Move Right Forward with speed 2. If line not found Move Left Forward with speed 2. Loop Ends Program Ends Activity 7 How can a robot be a machine? What makes a machine a robot? Machines can precisely repeat predetermined motions. Robots can do that too, but they can do even more. Robots can be programmed (given instructions) to perform many tasks. So, even when the task they have to do changes, we do not have to change the robot. Just by giving the robot different instructions, we can tell it to perform different tasks

5 End of Unit Assessment List the devices you use each day that plug into electricity. Which ones are important and which ones could you do without? Give your reasons. fans refrigerator computer light Think about the devices you use every day that need batteries for power. Which ones are important to you? o REMOTE CONTROL o TOYS o ALARM CLOCK o Buzzer: alarm systems o Fan: computer cooling system o Motor: robot joints, remote controlled car How many batteries you can fit in Edison? 4 Batteries. The voltage of a battery is written on its side. Find the voltage and size of one of the batteries inside Edison. Write what you see. It is a AAA, 1.5-volt battery If you fill the battery compartment, what is the total voltage, keeping in mind that the batteries are connected in series? 4 x 1.5 volt = 6 volt

6 What outputs does Edison have? Motors, buzzer, LEDs, In your opinion, what are the advantages and disadvantages of visual and textbased programming languages? The advantages of text-based programming languages: Things can be represented in a small space More complex programs can be made faster The disadvantages of text-based programming languages: They can be hard to learn They can sometimes be hard to understand (if written badly) The advantages of visual programming languages: Easier to learn Easy to see code and control flow The disadvantages of visual programming languages: Restrictive Only really good for scripting and small programs 7. Search for other text-based programming languages. Write some examples below. Java, JavaScript, C++ Edison has many simple machines and mechanisms. Some of them are easy to see, and some are hidden inside the robot. Look at the following pictures of the outside and inside of Edison. List all the simple machines that you can find. 1. Wheels and axles. 2. Screws. 3. The cover of the battery compartment acts as a lever. 4. Gears to increase the motors torque. (grey wheels with teeth inside the robot) UNIT 3: Keywords page 62 Make Decisions Many robots have been developed in recent years such as wall-following, human-following and obstacle-avoiding robots. These robots are extremely important as they are being developed to enter environments that are hazardous to humans; for example, rescuing people from burning buildings or in the case of earthquakes. Also, robots are used in space exploration.

7 What is Infrared Light? Infrared light is invisible to human eyes. It is a type of radiation which can be detected by an infrared sensor. There are other forms of invisible light, such as radio waves, ultraviolet radiation, X-rays and microwaves. Did you know? Some snakes can see the body heat of their victims. This allows them to catch their prey. Piranha fish live in murky water and use IR to locate their prey. Mosquitoes use infrared to find the blood-rich parts of their prey. Infrared (IR) Sensor An infrared sensor measures infrared (IR) light radiating heat from objects in its field of view. A firefighter uses infrared goggles to find a victim in the thick smoke. Did you know? An infrared (IR) sensor senses its surroundings by emitting and/or detecting infrared radiation. The basic concept of an infrared sensor is that it acts as an obstacle detector. It transmits an infrared signal; the signal bounces off the surface of an object and then returns the signal to the infrared receiver.

8 The obstacles need to be the same height (3.5 cm/1.5 in), or taller than Edison, for it to see them. Did you know? Edison s obstacle detection system uses the same invisible light that your remote control uses to tell the TV to change the channel. This light is called infrared, or IR, and is invisible to the human eye because it has a longer wavelength. You want Edison to check if there is an obstacle in front of him. If this is true, then you want him to beep. If not, then you do not want him to do anything.

9 Since Edison has two obstacle sensors, you can choose which sensor you want to use. There are four cases: obstacle ahead obstacle to the left obstacle to the right no obstacle is detected Activity 2 Modify the previous program, so that Edison can detect: obstacle to the left obstacle to the right any obstacle detected

10 Activity 3 Program your Edison to turn ON both LEDs when an obstacle is detected ahead. If there is no obstacle detected, both LEDs should be OFF. Program your Edison to: turn the right LED ON when there is an obstacle at the right side only. turn the left LED ON when there is an obstacle at the left side only. beep when there is an obstacle in front of the robot. turn OFF both LEDs when no obstacle is detected

11 Edison will do the following: Drive forward if there is no obstacle. If it detects an obstacle to the right, it should turn left. If it detects an obstacle to the left, it should turn right. In case the obstacle is in front of him, it should go backwards to the right. Did you know? Robot vacuum cleaners use the same IR system as Edison to detect obstacles. The Roomba

12 End-of-unit Assessment Using the if statement only, program Edison to: Turn the right LED ON when there is an obstacle at the right side. Turn the left LED ON when there is an obstacle at the left side. Beep when there is an obstacle in front of the robot Do you think this is a practical way of checking all the states of the sensors? What is your opinion? This is not a practical way since the compiler will check all the cases. If we are using if-elif-else structure, then if a condition is met, the complier will exit the if without checking the rest of the cases which make our code efficient. Edison has two obstacle sensors. Each sensor may or may not detect an obstacle. How many different possible options do you think there are? Both sensors detect an obstacle. Only the left sensor detects an obstacle. Only the right sensor detects an obstacle. Neither sensor detects an obstacle

Revision for Grade 7 in Unit #1&3

Revision for Grade 7 in Unit #1&3 Your Name:.... Grade 7 / SEION 1 Matching :Match the terms with its explanations. Write the matching letter in the correct box. he first one has been done for you. (1 mark each) erm Explanation 1. electrical

More information

Your EdVenture into Robotics 10 Lesson plans

Your EdVenture into Robotics 10 Lesson plans Your EdVenture into Robotics 10 Lesson plans Activity sheets and Worksheets Find Edison Robot @ Search: Edison Robot Call 800.962.4463 or email custserv@ Lesson 1 Worksheet 1.1 Meet Edison Edison is a

More information

A Day in the Life CTE Enrichment Grades 3-5 mblock Programs Using the Sensors

A Day in the Life CTE Enrichment Grades 3-5 mblock Programs Using the Sensors Activity 1 - Reading Sensors A Day in the Life CTE Enrichment Grades 3-5 mblock Programs Using the Sensors Computer Science Unit This tutorial teaches how to read values from sensors in the mblock IDE.

More information

Robotics II DESCRIPTION. EXAM INFORMATION Items

Robotics II DESCRIPTION. EXAM INFORMATION Items EXAM INFORMATION Items 37 Points 49 Prerequisites NONE Grade Level 10-12 Course Length ONE SEMESTER Career Cluster MANUFACTURING SCIENCE, TECHNOLOGY, ENGINEERING, AND MATHEMATICS Performance Standards

More information

understanding sensors

understanding sensors The LEGO MINDSTORMS EV3 set includes three types of sensors: Touch, Color, and Infrared. You can use these sensors to make your robot respond to its environment. For example, you can program your robot

More information

Parts of a Lego RCX Robot

Parts of a Lego RCX Robot Parts of a Lego RCX Robot RCX / Brain A B C The red button turns the RCX on and off. The green button starts and stops programs. The grey button switches between 5 programs, indicated as 1-5 on right side

More information

Robotics using Lego Mindstorms EV3 (Intermediate)

Robotics using Lego Mindstorms EV3 (Intermediate) Robotics using Lego Mindstorms EV3 (Intermediate) Facebook.com/roboticsgateway @roboticsgateway Robotics using EV3 Are we ready to go Roboticists? Does each group have at least one laptop? Do you have

More information

Partnership Teacher Night February 2017 littlebits and Electronic Circuits

Partnership Teacher Night February 2017 littlebits and Electronic Circuits Partnership Teacher Night February 2017 littlebits and Electronic Circuits What are littlebits? littlebits are easy-to-use, color-coded, magnetic, electronic snap-and-lock circuits that can be linked together

More information

Introductory Physics, High School Learning Standards for a Full First-Year Course

Introductory Physics, High School Learning Standards for a Full First-Year Course Introductory Physics, High School Learning Standards for a Full First-Year Course I. C ONTENT S TANDARDS 4.1 Describe the measurable properties of waves (velocity, frequency, wavelength, amplitude, period)

More information

Building an autonomous light finder robot

Building an autonomous light finder robot LinuxFocus article number 297 http://linuxfocus.org Building an autonomous light finder robot by Katja and Guido Socher About the authors: Katja is the

More information

TETRIX PULSE Workshop Guide

TETRIX PULSE Workshop Guide TETRIX PULSE Workshop Guide 44512 1 Who Are We and Why Are We Here? Who is Pitsco? Pitsco s unwavering focus on innovative educational solutions and unparalleled customer service began when the company

More information

UNIT 4 VOCABULARY SKILLS WORK FUNCTIONS QUIZ. A detailed explanation about Arduino. What is Arduino? Listening

UNIT 4 VOCABULARY SKILLS WORK FUNCTIONS QUIZ. A detailed explanation about Arduino. What is Arduino? Listening UNIT 4 VOCABULARY SKILLS WORK FUNCTIONS QUIZ 4.1 Lead-in activity Find the missing letters Reading A detailed explanation about Arduino. What is Arduino? Listening To acquire a basic knowledge about Arduino

More information

International Journal of Advance Engineering and Research Development. Zig Bee Based Human Sensing Robot using Embedded Systems

International Journal of Advance Engineering and Research Development. Zig Bee Based Human Sensing Robot using Embedded Systems Scientific Journal of Impact Factor (SJIF): 5.71 International Journal of Advance Engineering and Research Development Volume 5, Issue 03, March -2018 e-issn (O): 2348-4470 p-issn (P): 2348-6406 Zig Bee

More information

Lab book. Exploring Robotics (CORC3303)

Lab book. Exploring Robotics (CORC3303) Lab book Exploring Robotics (CORC3303) Dept of Computer and Information Science Brooklyn College of the City University of New York updated: Fall 2011 / Professor Elizabeth Sklar UNIT A Lab, part 1 : Robot

More information

Automobile Prototype Servo Control

Automobile Prototype Servo Control IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 10 March 2016 ISSN (online): 2349-6010 Automobile Prototype Servo Control Mr. Linford William Fernandes Don Bosco

More information

Nebraska 4-H Robotics and GPS/GIS and SPIRIT Robotics Projects

Nebraska 4-H Robotics and GPS/GIS and SPIRIT Robotics Projects Name: Club or School: Robots Knowledge Survey (Pre) Multiple Choice: For each of the following questions, circle the letter of the answer that best answers the question. 1. A robot must be in order to

More information

VEX Robotics Platform and ROBOTC Software. Introduction

VEX Robotics Platform and ROBOTC Software. Introduction VEX Robotics Platform and ROBOTC Software Introduction VEX Robotics Platform: Testbed for Learning Programming VEX Structure Subsystem VEX Structure Subsystem forms the base of every robot Contains square

More information

Welcome! Welcome to the LVL1 TV-B-Gone workshop. We will be covering the following: How the TV-B-Gone works Basic soldering technique Component identi

Welcome! Welcome to the LVL1 TV-B-Gone workshop. We will be covering the following: How the TV-B-Gone works Basic soldering technique Component identi TV-B-Gone LVL1 Welcome! Welcome to the LVL1 TV-B-Gone workshop. We will be covering the following: How the TV-B-Gone works Basic soldering technique Component identification Construction of a Super TV-B-Gone

More information

A Day in the Life CTE Enrichment Grades 3-5 mblock Robotics - Simple Programs

A Day in the Life CTE Enrichment Grades 3-5 mblock Robotics - Simple Programs Activity 1 - Play Music A Day in the Life CTE Enrichment Grades 3-5 mblock Robotics - Simple Programs Computer Science Unit One of the simplest things that we can do, to make something cool with our robot,

More information

4.6.1 Waves in air, fluids and solids Transverse and longitudinal waves Properties of waves

4.6.1 Waves in air, fluids and solids Transverse and longitudinal waves Properties of waves 4.6 Waves Wave behaviour is common in both natural and man-made systems. Waves carry energy from one place to another and can also carry information. Designing comfortable and safe structures such as bridges,

More information

The light sensor, rotation sensor, and motors may all be monitored using the view function on the RCX.

The light sensor, rotation sensor, and motors may all be monitored using the view function on the RCX. Review the following material on sensors. Discuss how you might use each of these sensors. When you have completed reading through this material, build a robot of your choosing that has 2 motors (connected

More information

Hare and Snail Challenges READY, GO!

Hare and Snail Challenges READY, GO! Hare and Snail Challenges READY, GO! Pre-Activity Quiz 1. What are some design considerations to make a fast robot? 2. What are some design considerations to make a slow robot? 2 Pre-Activity Quiz Answers

More information

Embedded Systems & Robotics (Winter Training Program) 6 Weeks/45 Days

Embedded Systems & Robotics (Winter Training Program) 6 Weeks/45 Days Embedded Systems & Robotics (Winter Training Program) 6 Weeks/45 Days PRESENTED BY RoboSpecies Technologies Pvt. Ltd. Office: W-53G, Sector-11, Noida-201301, U.P. Contact us: Email: stp@robospecies.com

More information

Some prior experience with building programs in Scratch is assumed. You can find some introductory materials here:

Some prior experience with building programs in Scratch is assumed. You can find some introductory materials here: Robotics 1b Building an mbot Program Some prior experience with building programs in Scratch is assumed. You can find some introductory materials here: http://www.mblock.cc/edu/ The mbot Blocks The mbot

More information

California State University, Bakersfield. Signals and Systems. Luis Medina,

California State University, Bakersfield. Signals and Systems. Luis Medina, Luis Medina, Department of Electrical and Computer Engineering, California State University, Bakersfield Lecture 9 (Intro, History and Background) July 29 th, 2013 1 Electric Fields An electric field surrounds

More information

Implement a Robot for the Trinity College Fire Fighting Robot Competition.

Implement a Robot for the Trinity College Fire Fighting Robot Competition. Alan Kilian Fall 2011 Implement a Robot for the Trinity College Fire Fighting Robot Competition. Page 1 Introduction: The successful completion of an individualized degree in Mechatronics requires an understanding

More information

Electromagnetic Spectrum

Electromagnetic Spectrum Electromagnetic Spectrum Wave - Review Waves are oscillations that transport energy. 2 Types of waves: Mechanical waves that require a medium to travel through (sound, water, earthquakes) Electromagnetic

More information

Today s Menu. Near Infrared Sensors

Today s Menu. Near Infrared Sensors Today s Menu Near Infrared Sensors CdS Cells Programming Simple Behaviors 1 Near-Infrared Sensors Infrared (IR) Sensors > Near-infrared proximity sensors are called IRs for short. These devices are insensitive

More information

Learn about the RoboMind programming environment

Learn about the RoboMind programming environment RoboMind Challenges Getting Started Learn about the RoboMind programming environment Difficulty: (Easy), Expected duration: an afternoon Description This activity uses RoboMind, a robot simulation environment,

More information

Multi-Robot Teamwork Cooperative Multi-Robot Systems

Multi-Robot Teamwork Cooperative Multi-Robot Systems Multi-Robot Teamwork Cooperative Lecture 1: Basic Concepts Gal A. Kaminka galk@cs.biu.ac.il 2 Why Robotics? Basic Science Study mechanics, energy, physiology, embodiment Cybernetics: the mind (rather than

More information

Introduction to the VEX Robotics Platform and ROBOTC Software

Introduction to the VEX Robotics Platform and ROBOTC Software Introduction to the VEX Robotics Platform and ROBOTC Software Computer Integrated Manufacturing 2013 Project Lead The Way, Inc. VEX Robotics Platform: Testbed for Learning Programming VEX Structure Subsystem

More information

Lab 1: Testing and Measurement on the r-one

Lab 1: Testing and Measurement on the r-one Lab 1: Testing and Measurement on the r-one Note: This lab is not graded. However, we will discuss the results in class, and think just how embarrassing it will be for me to call on you and you don t have

More information

4.6 Waves Waves in air, fluids and solids Transverse and longitudinal waves

4.6 Waves Waves in air, fluids and solids Transverse and longitudinal waves 4.6 Waves Wave behaviour is common in both natural and man-made systems. Waves carry energy from one place to another and can also carry information. Designing comfortable and safe structures such as bridges,

More information

Robotics & Embedded Systems (Summer Training Program) 4 Weeks/30 Days

Robotics & Embedded Systems (Summer Training Program) 4 Weeks/30 Days (Summer Training Program) 4 Weeks/30 Days PRESENTED BY RoboSpecies Technologies Pvt. Ltd. Office: D-66, First Floor, Sector- 07, Noida, UP Contact us: Email: stp@robospecies.com Website: www.robospecies.com

More information

Studuino Icon Programming Environment Guide

Studuino Icon Programming Environment Guide Studuino Icon Programming Environment Guide Ver 0.9.6 4/17/2014 This manual introduces the Studuino Software environment. As the Studuino programming environment develops, these instructions may be edited

More information

An Autonomous Self- Propelled Robot Designed for Obstacle Avoidance and Fire Fighting

An Autonomous Self- Propelled Robot Designed for Obstacle Avoidance and Fire Fighting An Autonomous Self- Propelled Robot Designed for Obstacle Avoidance and Fire Fighting K. Prathyusha Assistant professor, Department of ECE, NRI Institute of Technology, Agiripalli Mandal, Krishna District,

More information

Electromagnetic Waves & the Electromagnetic Spectrum

Electromagnetic Waves & the Electromagnetic Spectrum Electromagnetic Waves & the Electromagnetic Spectrum longest wavelength shortest wavelength The Electromagnetic Spectrum The name given to a group of energy waves that are mostly invisible and can travel

More information

An Introduction to Programming using the NXT Robot:

An Introduction to Programming using the NXT Robot: An Introduction to Programming using the NXT Robot: exploring the LEGO MINDSTORMS Common palette. Student Workbook for independent learners and small groups The following tasks have been completed by:

More information

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators

Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Mechatronics Engineering and Automation Faculty of Engineering, Ain Shams University MCT-151, Spring 2015 Lab-4: Electric Actuators Ahmed Okasha, Assistant Lecturer okasha1st@gmail.com Objective Have a

More information

Name: Date: Block: Light Unit Study Guide Matching Match the correct definition to each term. 1. Waves

Name: Date: Block: Light Unit Study Guide Matching Match the correct definition to each term. 1. Waves Name: Date: Block: Light Unit Study Guide Matching Match the correct definition to each term. 1. Waves 2. Medium 3. Mechanical waves 4. Longitudinal waves 5. Transverse waves 6. Frequency 7. Reflection

More information

National 3 Physics Waves and Radiation. 1. Wave Properties

National 3 Physics Waves and Radiation. 1. Wave Properties 1. Wave Properties What is a wave? Waves are a way of transporting energy from one place to another. They do this through some form of vibration. We see waves all the time, for example, ripples on a pond

More information

Agent-based/Robotics Programming Lab II

Agent-based/Robotics Programming Lab II cis3.5, spring 2009, lab IV.3 / prof sklar. Agent-based/Robotics Programming Lab II For this lab, you will need a LEGO robot kit, a USB communications tower and a LEGO light sensor. 1 start up RoboLab

More information

Embedding Radars in Robots for Safety and Obstacle Detection

Embedding Radars in Robots for Safety and Obstacle Detection Technical Disclosure Commons Defensive Publications Series April 02, 2017 Embedding Radars in Robots for Safety and Obstacle Detection Jaime Lien Patrick M. Amihood Ali Javan Javidan Mustafa Emre Karagozler

More information

ROBOTICS ENG YOUSEF A. SHATNAWI INTRODUCTION

ROBOTICS ENG YOUSEF A. SHATNAWI INTRODUCTION ROBOTICS INTRODUCTION THIS COURSE IS TWO PARTS Mobile Robotics. Locomotion (analogous to manipulation) (Legged and wheeled robots). Navigation and obstacle avoidance algorithms. Robot Vision Sensors and

More information

Crowtail Start Kit for micro:bit User Guide

Crowtail Start Kit for micro:bit User Guide Crowtail Start Kit for micro:bit User Guide The BBC micro:bit is a pocket-sized computer that can easily realize your creativity without much electrical and coding knowledge. There are numerous possibility

More information

Park Ranger. Li Yang April 21, 2014

Park Ranger. Li Yang April 21, 2014 Park Ranger Li Yang April 21, 2014 University of Florida Department of Electrical and Computer Engineering EEL 5666C IMDL Written Report Instructors: A. Antonio Arroyo, Eric M. Schwartz TAs: Andy Gray,

More information

Boe-Bot robot manual

Boe-Bot robot manual Tallinn University of Technology Department of Computer Engineering Chair of Digital Systems Design Boe-Bot robot manual Priit Ruberg Erko Peterson Keijo Lass Tallinn 2016 Contents 1 Robot hardware description...3

More information

Chapter 9: Light, Colour and Radiant Energy. Passed a beam of white light through a prism.

Chapter 9: Light, Colour and Radiant Energy. Passed a beam of white light through a prism. Chapter 9: Light, Colour and Radiant Energy Where is the colour in sunlight? In the 17 th century (1600 s), Sir Isaac Newton conducted a famous experiment. Passed a beam of white light through a prism.

More information

Where C= circumference, π = 3.14, and D = diameter EV3 Distance. Developed by Joanna M. Skluzacek Wisconsin 4-H 2016 Page 1

Where C= circumference, π = 3.14, and D = diameter EV3 Distance. Developed by Joanna M. Skluzacek Wisconsin 4-H 2016 Page 1 Instructor Guide Title: Distance the robot will travel based on wheel size Introduction Calculating the distance the robot will travel for each of the duration variables (rotations, degrees, seconds) can

More information

Built-in soft-start feature. Up-Slope and Down-Slope. Power-Up safe start feature. Motor will only start if pulse of 1.5ms is detected.

Built-in soft-start feature. Up-Slope and Down-Slope. Power-Up safe start feature. Motor will only start if pulse of 1.5ms is detected. Thank You for purchasing our TRI-Mode programmable DC Motor Controller. Our DC Motor Controller is the most flexible controller you will find. It is user-programmable and covers most applications. This

More information

Design of Tracked Robot with Remote Control for Surveillance

Design of Tracked Robot with Remote Control for Surveillance Proceedings of the 2014 International Conference on Advanced Mechatronic Systems, Kumamoto, Japan, August 10-12, 2014 Design of Tracked Robot with Remote Control for Surveillance Widodo Budiharto School

More information

VOICE CONTROLLED ROBOT WITH REAL TIME BARRIER DETECTION AND AVERTING

VOICE CONTROLLED ROBOT WITH REAL TIME BARRIER DETECTION AND AVERTING VOICE CONTROLLED ROBOT WITH REAL TIME BARRIER DETECTION AND AVERTING P.NARENDRA ILAYA PALLAVAN 1, S.HARISH 2, C.DHACHINAMOORTHI 3 1Assistant Professor, EIE Department, Bannari Amman Institute of Technology,

More information

Chapter 6: Microcontrollers

Chapter 6: Microcontrollers Chapter 6: Microcontrollers 1. Introduction to Microcontrollers It s in the name. Microcontrollers: are tiny; control other electronic and mechanical systems. They are found in a huge range of products:

More information

Final Report. by Mingwei Liu. Robot Name: Danner

Final Report. by Mingwei Liu. Robot Name: Danner ! " Final Report by Mingwei Liu Robot Name: Danner Course Name: EEL5666 Intelligent Machine Design Lab Instructors: Dr. A. Antonio Arroyo, Dr. Eric M. Schwartz TAs: Devin Hughes, Tim Martin, Ryan Stevens,

More information

Uses of Electromagnetic Waves

Uses of Electromagnetic Waves Uses of Electromagnetic Waves 1 of 42 Boardworks Ltd 2016 Uses of Electromagnetic Waves 2 of 42 Boardworks Ltd 2016 What are radio waves? 3 of 42 Boardworks Ltd 2016 The broadcast of every radio and television

More information

Bit:Bot The Integrated Robot for BBC Micro:Bit

Bit:Bot The Integrated Robot for BBC Micro:Bit Bit:Bot The Integrated Robot for BBC Micro:Bit A great way to engage young and old kids alike with the BBC micro:bit and all the languages available. Both block-based and text-based languages can support

More information

Rahul Krishna K 1, Meera A 2, Nikhil Mathew 3 1,2,3 EEE Department, Mar Athanesius College of Engineering, Kothamangalam

Rahul Krishna K 1, Meera A 2, Nikhil Mathew 3 1,2,3 EEE Department, Mar Athanesius College of Engineering, Kothamangalam Wireless Human Detection Robot Rahul Krishna K 1, Meera A 2, Nikhil Mathew 3 1,2,3 EEE Department, Mar Athanesius College of Engineering, Kothamangalam Abstract: The advent of new high-speed technology

More information

Robot: Robonaut 2 The first humanoid robot to go to outer space

Robot: Robonaut 2 The first humanoid robot to go to outer space ProfileArticle Robot: Robonaut 2 The first humanoid robot to go to outer space For the complete profile with media resources, visit: http://education.nationalgeographic.org/news/robot-robonaut-2/ Program

More information

How Does an Ultrasonic Sensor Work?

How Does an Ultrasonic Sensor Work? How Does an Ultrasonic Sensor Work? Ultrasonic Sensor Pre-Quiz 1. How do humans sense distance? 2. How do bats sense distance? 3. Provide an example stimulus-sensorcoordinator-effector-response framework

More information

Voice Guided Military Robot for Defence Application

Voice Guided Military Robot for Defence Application IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 11 April 2016 ISSN (online): 2349-6010 Voice Guided Military Robot for Defence Application Palak N. Patel Minal

More information

Two Hour Robot. Lets build a Robot.

Two Hour Robot. Lets build a Robot. Lets build a Robot. Our robot will use an ultrasonic sensor and servos to navigate it s way around a maze. We will be making 2 voltage circuits : A 5 Volt for our ultrasonic sensor, sound and lights powered

More information

A Simple Design of Clean Robot

A Simple Design of Clean Robot Journal of Computing and Electronic Information Management ISSN: 2413-1660 A Simple Design of Clean Robot Huichao Wu 1, a, Daofang Chen 2, Yunpeng Yin 3 1 College of Optoelectronic Engineering, Chongqing

More information

MEMS Accelerometer sensor controlled robot with wireless video camera mounted on it

MEMS Accelerometer sensor controlled robot with wireless video camera mounted on it MEMS Accelerometer sensor controlled robot with wireless video camera mounted on it The main aim of this project is video coverage at required places with the help of digital camera and high power LED.

More information

Module PREPARED. August 2013

Module PREPARED. August 2013 Technology Exploration-I Module 1: Introduction to Simple Machines PREPARED BY Curriculum Development Unit August 2013 Applied Technology High Schools, 2013 Module 1: Introduction to Simple Machines Module

More information

Programmable Control Introduction

Programmable Control Introduction Programmable Control Introduction By the end of this unit you should be able to: Give examples of where microcontrollers are used Recognise the symbols for different processes in a flowchart Construct

More information

Laboratory 7: CONTROL SYSTEMS FUNDAMENTALS

Laboratory 7: CONTROL SYSTEMS FUNDAMENTALS Laboratory 7: CONTROL SYSTEMS FUNDAMENTALS OBJECTIVES - Familiarize the students in the area of automatization and control. - Familiarize the student with programming of toy robots. EQUIPMENT AND REQUERIED

More information

The topics in this unit are:

The topics in this unit are: The topics in this unit are: 1 Types of waves 2 Describing waves 3 Wave equation 4 Reflection of waves 5 Refraction 6 Diffraction 7 Light waves (reflection) 8 Total internal reflection 9 - Optical fibres

More information

a Motorized Robot Inventor s Guide What will yours look like?

a Motorized Robot Inventor s Guide What will yours look like? 8+ a Motorized Robot Spark!Lab is a real place located in the Smithsonian s National Museum of American History. It s a hands-on invention activity center where visitors learn that invention is a process

More information

Inspiring the Next Engineers and Scientists

Inspiring the Next Engineers and Scientists Activity Book Inspiring the Next Engineers and Scientists What is STEM? STEM is Science, Technology, Engineering, and Math: All very important subjects that help you build robots! This booklet is packed

More information

Chapter 1. Robots and Programs

Chapter 1. Robots and Programs Chapter 1 Robots and Programs 1 2 Chapter 1 Robots and Programs Introduction Without a program, a robot is just an assembly of electronic and mechanical components. This book shows you how to give it a

More information

Introduction. Theory of Operation

Introduction. Theory of Operation Mohan Rokkam Page 1 12/15/2004 Introduction The goal of our project is to design and build an automated shopping cart that follows a shopper around. Ultrasonic waves are used due to the slower speed of

More information

CHAPTER 17 AND 18 CHARACTERISTICS OF EM WAVES LEARNING OBJECTIVES CHARACTERISTICS OF EM WAVES 11/10/2014

CHAPTER 17 AND 18 CHARACTERISTICS OF EM WAVES LEARNING OBJECTIVES CHARACTERISTICS OF EM WAVES 11/10/2014 STUDENT LEARNING GOALS PHYSICAL SCIENCE ELECTROMAGNETISM SC.912.P.10.18 CHAPTER 17 AND 18 Electromagnetic Spectrum, Light, and Sound Goal: Explore the theory of electromagnetism by comparting and contrasting

More information

Blink. EE 285 Arduino 1

Blink. EE 285 Arduino 1 Blink At the end of the previous lecture slides, we loaded and ran the blink program. When the program is running, the built-in LED blinks on and off on for one second and off for one second. It is very

More information

Lab 7 Remotely Operated Vehicle v2.0

Lab 7 Remotely Operated Vehicle v2.0 Lab 7 Remotely Operated Vehicle v2.0 ECE 375 Oregon State University Page 51 Objectives Use your knowledge of computer architecture to create a real system as a proof of concept for a possible consumer

More information

TABLE OF CONTENTS. Sample file. Projects 25 Worksheets & Quizzes 28 Coloring Pages 32 Mazes 48 Links 52 Answer Keys 56

TABLE OF CONTENTS. Sample file. Projects 25 Worksheets & Quizzes 28 Coloring Pages 32 Mazes 48 Links 52 Answer Keys 56 TABLE OF CONTENTS Simple Machines 3 Inclined Plane 5 Lever 8 Pulley 10 Wedge 12 Wheel & Axle 14 Gear 15 Compound Machines 17 Handwriting/Spelling Practice 18 Print 18 Manuscript/D'Nealian-style 20 Cursive

More information

Shock Sensor Module This module is digital shock sensor. It will output a high level signal when it detects a shock event.

Shock Sensor Module This module is digital shock sensor. It will output a high level signal when it detects a shock event. Item Picture Description KY001: Temperature This module measures the temperature and reports it through the 1-wire bus digitally to the Arduino. DS18B20 (https://s3.amazonaws.com/linksprite/arduino_kits/advanced_sensors_kit/ds18b20.pdf)

More information

Intelligent Robotics Sensors and Actuators

Intelligent Robotics Sensors and Actuators Intelligent Robotics Sensors and Actuators Luís Paulo Reis (University of Porto) Nuno Lau (University of Aveiro) The Perception Problem Do we need perception? Complexity Uncertainty Dynamic World Detection/Correction

More information

University of Florida Department of Electrical and Computer Engineering EEL 5666 Intelligent Machines Design Laboratory GetMAD Final Report

University of Florida Department of Electrical and Computer Engineering EEL 5666 Intelligent Machines Design Laboratory GetMAD Final Report Date: 12/8/2009 Student Name: Sarfaraz Suleman TA s: Thomas Vermeer Mike Pridgen Instuctors: Dr. A. Antonio Arroyo Dr. Eric M. Schwartz University of Florida Department of Electrical and Computer Engineering

More information

Hexbug Spider Hacking Kit (no solder) by EMGRobotics.com

Hexbug Spider Hacking Kit (no solder) by EMGRobotics.com Hexbug Spider Hacking Kit (no solder) by EMGRobotics.com This low-cost hack (less than $40 including the cost of the Hexbug spider) converts the remote control toy into a C programmable autonomous robot

More information

Term Info Picture. A wave that has both electric and magnetic fields. They travel through empty space (a vacuum).

Term Info Picture. A wave that has both electric and magnetic fields. They travel through empty space (a vacuum). Waves S8P4. Obtain, evaluate, and communicate information to support the claim that electromagnetic (light) waves behave differently than mechanical (sound) waves. A. Ask questions to develop explanations

More information

Home-made Infrared Goggles & Lighting Filters. James Robb

Home-made Infrared Goggles & Lighting Filters. James Robb Home-made Infrared Goggles & Lighting Filters James Robb University Physics II Lab: H1 4/19/10 Trying to build home-made infrared goggles was a fun and interesting project. It involved optics and electricity.

More information

Lecture Outlines Chapter 25. Physics, 3 rd Edition James S. Walker

Lecture Outlines Chapter 25. Physics, 3 rd Edition James S. Walker Lecture Outlines Chapter 25 Physics, 3 rd Edition James S. Walker 2007 Pearson Prentice Hall This work is protected by United States copyright laws and is provided solely for the use of instructors in

More information

C - Underground Exploration

C - Underground Exploration C - Underground Exploration You've discovered an underground system of tunnels under the planet surface, but they are too dangerous to explore! Let's get our robot to explore instead. 2017 courses.techcamp.org.uk/

More information

Term Paper: Robot Arm Modeling

Term Paper: Robot Arm Modeling Term Paper: Robot Arm Modeling Akul Penugonda December 10, 2014 1 Abstract This project attempts to model and verify the motion of a robot arm. The two joints used in robot arms - prismatic and rotational.

More information

ECE 511: MICROPROCESSORS

ECE 511: MICROPROCESSORS ECE 511: MICROPROCESSORS A project report on SNIFFING DOG Under the guidance of Prof. Jens Peter Kaps By, Preethi Santhanam (G00767634) Ranjit Mandavalli (G00819673) Shaswath Raghavan (G00776950) Swathi

More information

MASTER SHIFU. STUDENT NAME: Vikramadityan. M ROBOT NAME: Master Shifu COURSE NAME: Intelligent Machine Design Lab

MASTER SHIFU. STUDENT NAME: Vikramadityan. M ROBOT NAME: Master Shifu COURSE NAME: Intelligent Machine Design Lab MASTER SHIFU STUDENT NAME: Vikramadityan. M ROBOT NAME: Master Shifu COURSE NAME: Intelligent Machine Design Lab COURSE NUMBER: EEL 5666C TA: Andy Gray, Nick Cox INSTRUCTORS: Dr. A. Antonio Arroyo, Dr.

More information

Reflection Teacher Notes

Reflection Teacher Notes Reflection Teacher Notes 4.1 What s This About? Students learn that infrared light is reflected in the same manner as visible light. Students align a series of mirrors so that they can turn on a TV with

More information

Implementation of a Self-Driven Robot for Remote Surveillance

Implementation of a Self-Driven Robot for Remote Surveillance International Journal of Research Studies in Science, Engineering and Technology Volume 2, Issue 11, November 2015, PP 35-39 ISSN 2349-4751 (Print) & ISSN 2349-476X (Online) Implementation of a Self-Driven

More information

Mechatronics Educational Robots Robko PHOENIX

Mechatronics Educational Robots Robko PHOENIX 68 MECHATRONICS EDUCATIONAL ROBOTS ROBKO PHOENIX Mechatronics Educational Robots Robko PHOENIX N. Chivarov*, N. Shivarov* and P. Kopacek** *Central Laboratory of Mechatronics and Instrumentation, Bloc

More information

Final Report Metallocalizer

Final Report Metallocalizer Date: 12/08/09 Student Name: Fernando N. Coviello TAs : Mike Pridgen Thomas Vermeer Instructors: Dr. A. Antonio Arroyo Dr. Eric M. Schwartz Final Report Metallocalizer University of Florida Department

More information

II. MAIN BLOCKS OF ROBOT

II. MAIN BLOCKS OF ROBOT AVR Microcontroller Based Wireless Robot For Uneven Surface Prof. S.A.Mishra 1, Mr. S.V.Chinchole 2, Ms. S.R.Bhagat 3 1 Department of EXTC J.D.I.E.T Yavatmal, Maharashtra, India. 2 Final year EXTC J.D.I.E.T

More information

Marr College Physics S3 Physics Waves and Radiation Homework Exercises

Marr College Physics S3 Physics Waves and Radiation Homework Exercises Marr College Physics S3 Physics Waves and Radiation Homework Exercises Page 1 Exercise 1 wave characteristics 1. Copy and complete the following: With a _ wave, the particles vibrate at 90 to the direction

More information

micro:bit Basics The basic programming interface, utilizes Block Programming and Javascript2. It can be found at

micro:bit Basics The basic programming interface, utilizes Block Programming and Javascript2. It can be found at Name: Class: micro:bit Basics What is a micro:bit? The micro:bit is a small computer1, created to teach computing and electronics. You can use it on its own, or connect it to external devices. People have

More information

Fig. 1 Tachometer Built from Old CD, DC Motor, and Photogate

Fig. 1 Tachometer Built from Old CD, DC Motor, and Photogate Lab 4: Photogate Fun Introduction Surging through the heart of microprocessors are digital pulses, single pulses, bursts of pulses, and wave trains of pulses. Pulses are the lifegiving blood of all digital

More information

EQ-ROBO Programming : bomb Remover Robot

EQ-ROBO Programming : bomb Remover Robot EQ-ROBO Programming : bomb Remover Robot Program begin Input port setting Output port setting LOOP starting point (Repeat the command) Condition 1 Key of remote controller : LEFT UP Robot go forwards after

More information

PRE-VISIT ACTIVITIES

PRE-VISIT ACTIVITIES PRE-VISIT ACTIVITIES Two pieces of paper Scissors FOR SIMPLE MACHINES FIELD TRIP WEDGE A wedge is an inclined plane that is thick at one end and tapers to a point on the other, often used to separate things.

More information

GCSE SCIENCE A PHYSICS

GCSE SCIENCE A PHYSICS Please write clearly in block capitals. Centre number Candidate number Surname Forename(s) Candidate signature GCSE SCIENCE A PHYSICS Foundation Tier Unit Physics P1 F Wednesday 24 May 2017 Afternoon Time

More information

International Journal for Research in Applied Science & Engineering Technology (IJRASET) DTMF Based Robot for Security Applications

International Journal for Research in Applied Science & Engineering Technology (IJRASET) DTMF Based Robot for Security Applications DTMF Based Robot for Security Applications N. Mohan Raju 1, M. Naga Praveen 2, A. Mansoor Vali 3, M. Amrutha 4, K. Jaya Theertha 5 1,2,3,4,5 Department of ECE, JNTUA Abstract: The main idea is to implement

More information

EdPy app documentation

EdPy app documentation EdPy app documentation This document contains a full copy of the help text content available in the Documentation section of the EdPy app. Contents Ed.List()... 4 Ed.LeftLed()... 5 Ed.RightLed()... 6 Ed.ObstacleDetectionBeam()...

More information

HAND GESTURE CONTROLLED ROBOT USING ARDUINO

HAND GESTURE CONTROLLED ROBOT USING ARDUINO HAND GESTURE CONTROLLED ROBOT USING ARDUINO Vrushab Sakpal 1, Omkar Patil 2, Sagar Bhagat 3, Badar Shaikh 4, Prof.Poonam Patil 5 1,2,3,4,5 Department of Instrumentation Bharati Vidyapeeth C.O.E,Kharghar,Navi

More information