Parts of a Lego RCX Robot

Size: px
Start display at page:

Download "Parts of a Lego RCX Robot"

Transcription

1 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 the RCX s screen. Tip: Make sure you know which number your program is! A: The black ports A-C power motors and lights from batteries inside the RCX according to your program. B: The grey ports 1-3 provide data from sensors to the RCX. CHERP only uses Port 1. C: The infra-red port listens for instructions from the computer and sends them to the brain inside the RCX. Motors Wires Connect to Ports A and C with wires that go from Port A/C to the black port seen on the motor. Tip: The orientation of the wire ends on each port affects the direction the motors turn. See tip below. Provides electrical connections from ports on the RCX to components like motors and lights. Tip: Make sure the wires don t rub the robot s wheels this can slow them down! Wire Orientations Lights Tip: This orientation of wire ends and motors will result in your robot moving as expected. Connect to Port B directly or via a wire. Tip: See programming tips on light blocks.

2 Starter Ideas for Mobile Robot Designs There are many ways to put together a mobile LEGO robot, but starting out can be confusing for builders of all ages. Here are some ideas intended to facilitate the exploration of different designs. Note: these ideas don t necessarily all work in conjunction with each other! General Tips: Make sure all the robot s parts are connected STURDILY! Keep the IR port ( ear ) unobstructed so the robot can receive programs. Try out wheels of different sizes or other round parts, like LEGO gears. Improving Mobility: Anything (e.g. a wire or Lego piece) rubbing a wheel will significantly slow down that wheel. One way to prevent the wires from rubbing the wheels is to wrap the wires from front to back between the motors and up onto the ports (see example (a) below). Using a slider instead of a wheel on the front leg(s) of the robot allows the robot to turn smoothly. Tires in front can t pivot like on a real car and will cause a lot of friction while the robot turns. (a) Motor attachment (b) Reinforcement of motors #1 (c) Reinforcement of motors #2 (d) Reinforcement of motors (e) Wrapping wires. Tip: Attach (f) Orient the wire ends like this (#3-Can you think of others?) motor w/1 wire end connected so the robot behaves properly. to it, then wrap wire and connect on top. (g) Front leg with slider (h) Front legs with sliders (i) Different possible wheels

3 Building a Program with CHERP You can make the same programs with the on-screen (graphical) blocks and the wooden (tangible) blocks. Typing Control+1 (or 2 or 3) reveals the corresponding number of rows of programming instructions in the onscreen interface. This doesn t work in full-screen mode. Hit Enter / Escape to enter and exit full-screen mode. Every program must start with a BEGIN block and end with and END block: Graphical blocks will ONLY connect to a BEGIN block or to a sequence of connected blocks. Unconnected graphical blocks will appear pale and will not be downloaded to the robot. REPEATs and Ifs must be paired with their corresponding END block. The relevant action(s) go in between, like this: REPEAT and IF blocks have a grey space for a parameter additional information that says how many times the instructions will be repeated. The REPEAT parameter is optional since the default is to REPEAT FOREVER. With the tangible interface, any parameters circular barcodes must align with those of the other blocks and be visible to the camera to download the program to a robot. Keep in mind: Attach new graphical blocks to a program by dragging and dropping the new block wherever you want it. Click on any graphical block in the program to move that block and all blocks to its right. To get rid of graphical blocks from the workspace, drag them to anywhere in the rows of available blocks at the bottom of the screen. To clear all attached graphical blocks at once, click the BEGIN block and drag down. Blocks will be interpreted by the robot sequentially starting with the BEGIN block. For instance, in the IF block example above, the robot will go backwards once and then, if the light sensor detects bright light, it will shake. Once you download any program (graphical/tangible) to a robot, an editable on-screen version of it appears. The motion and sound blocks instruct the robot to do an action for half a second, then stop. The light blocks work differently. LIGHT ON turns the light on until LIGHT OFF is used. If there is no LIGHT OFF before the end of the program, the light will already be on at the start of the next program. The light blocks also make the robot do the next instruction immediately, not after half a second. It helps to think through the state of the light throughout your program. Challenge: How might you make the light blink?

4 If you are using the graphical blocks, skip to #2. Downloading a Program to a Robot 1. Place the tangible blocks directly facing the webcam about inches away from it. Otherwise, the computer vision will not detect your program properly. You may be prompted to include a BEGIN block in your program. If you do have a BEGIN block and it appeared within the image shown on-screen during the attempted download, change the distance or angle between the webcam and your program and re-download the program. Tip: You can put the blocks across the table from the webcam or on the floor under the downward-pointing webcam inches 2. Position the IR port (the smooth black rectangle) of your RCX-based robot near the front of the LEGO USB Tower and make sure that the RCX is turned on (you will see numbers counting up on the RXC s screen). 3. Press the appropriate on-screen download button (the mouse for graphical, left; the blocks for tangible, right). The RCX will play a rising series of beeps when the download is complete. 4. Place your robot where it can safely move around (usually an open space on the floor) and press the green Run button on the RCX to run the program. IMPORTANT: If your robot won t turn on, or if it turns on but has no numbers counting up on the screen, or if your program has all the right parts but CHERP gives you this error message: Your program is missing something, it needs new firmware; get a new RCX brick from Louise / Elizabeth. ALWAYS turn off your robot while you re not downloading a program to it or running a program. It will use up its batteries very quickly if it is left on! Also Note: To download a graphical program it is NOT necessary to remove tangible blocks from in front of the webcam; likewise, to download a tangible program, it is NOT necessary to remove any graphical blocks from the screen. However, it IS a good idea to remove extraneous tangible blocks from the webcam s view when downloading a tangible program.

5 Working with Sensors and Sensor Parameters Robotic Parts Tip: Only one sensor can be used at a time. Make sure the sensor on your robot matches the parameter in your program! Touch Sensor Light Sensor Connect the loose wire end to Port 1. Be sure the other end of the wire is connected to the 4 pips on top of the sensor and closest to the yellow button. Tip: The sensor itself can be attached anywhere or hang loose do what works for your project. Connect the wire end to Port 1. Tip: Attach the sensor itself so that it will be directed toward the light source you intend it to measure. Tip: The light sensor only sees directly in front of it and often counts fairly bright light as dark, which can produce some surprising or inconsistent behaviors. It s best to shine a flashlight right at the sensor whenever you want it to perceive light. Programming Blocks that Use Sensor Parameters What are sensors and sensor parameters? Sensors provide information to the REPEAT and IF blocks about some condition in the robot s surroundings. A parameter provides information about how the REPEAT or IF should work, and a sensor parameter bases this information on data from a sensor rather than a given value, as is this case for number parameters. Tip: In a program, the robot checks the sensor value only when it gets to the REPEAT or IF block in the program. It does not automatically check continuously. In the following example of REPEATs with a sensor parameter, the robot will sing over and over until the light sensor indicates that it perceives darkness. The program is telling the robot to sing until dark, or, more specifically, to check if the light level perceived by the sensor, to sing if it s light, to check again, etc, etc.. The first time the sensor perceives dark when the robot checks, it will not sing, and it will end the program. In this example of Ifs and a sensor parameter, the robot check if the touch sensor is being pushed; this it will go backward if it is and forward if it is not.

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

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

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

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

Ev3 Robotics Programming 101

Ev3 Robotics Programming 101 Ev3 Robotics Programming 101 1. EV3 main components and use 2. Programming environment overview 3. Connecting your Robot wirelessly via bluetooth 4. Starting and understanding the EV3 programming environment

More information

Chapter 14. using data wires

Chapter 14. using data wires Chapter 14. using data wires In this fifth part of the book, you ll learn how to use data wires (this chapter), Data Operations blocks (Chapter 15), and variables (Chapter 16) to create more advanced programs

More information

Line-Follower Challenge

Line-Follower Challenge Line-Follower Challenge Pre-Activity Quiz 1. How does a color sensor work? Does the color sensor detect white or black as a higher amount of light reflectivity? Absorbance? 2. Can you think of a method

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

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

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

In order to do this project you should review the following concepts:

In order to do this project you should review the following concepts: Catapult In order to do this project you should review the following concepts: Catapult 18 Rope Lego Band Rubber Band Catapult: Arm Catapult: Arm Catapult: Arm Leave the other end of the rubber band loose

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

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

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

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

Deriving Consistency from LEGOs

Deriving Consistency from LEGOs Deriving Consistency from LEGOs What we have learned in 6 years of FLL and 7 years of Lego Robotics by Austin and Travis Schuh 1 2006 Austin and Travis Schuh, all rights reserved Objectives Basic Building

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

LEGO Mindstorms Class: Lesson 1

LEGO Mindstorms Class: Lesson 1 LEGO Mindstorms Class: Lesson 1 Some Important LEGO Mindstorm Parts Brick Ultrasonic Sensor Light Sensor Touch Sensor Color Sensor Motor Gears Axle Straight Beam Angled Beam Cable 1 The NXT-G Programming

More information

Vision Ques t. Vision Quest. Use the Vision Sensor to drive your robot in Vision Quest!

Vision Ques t. Vision Quest. Use the Vision Sensor to drive your robot in Vision Quest! Vision Ques t Vision Quest Use the Vision Sensor to drive your robot in Vision Quest! Seek Discover new hands-on builds and programming opportunities to further your understanding of a subject matter.

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

Lego Nxt in Physical Etoys

Lego Nxt in Physical Etoys Lego Nxt in Physical Etoys Physical Etoys is a software Project which let us control, in real time, Lego Mindstorms Nxt s Robots using a Bluetooth connection. SqueakNxt is a module of the Physical Etoys

More information

Welcome to. NXT Basics. Presenter: Wael Hajj Ali With assistance of: Ammar Shehadeh - Souhaib Alzanki - Samer Abuthaher

Welcome to. NXT Basics. Presenter: Wael Hajj Ali With assistance of: Ammar Shehadeh - Souhaib Alzanki - Samer Abuthaher Welcome to NXT Basics Presenter: Wael Hajj Ali With assistance of: Ammar Shehadeh - Souhaib Alzanki - Samer Abuthaher Outline Have you met the Lizard? Introducing the Platform Lego Parts Motors Sensors

More information

Robot Programming Manual

Robot Programming Manual 2 T Program Robot Programming Manual Two sensor, line-following robot design using the LEGO NXT Mindstorm kit. The RoboRAVE International is an annual robotics competition held in Albuquerque, New Mexico,

More information

Robotics Workshop. for Parents and Teachers. September 27, 2014 Wichita State University College of Engineering. Karen Reynolds

Robotics Workshop. for Parents and Teachers. September 27, 2014 Wichita State University College of Engineering. Karen Reynolds Robotics Workshop for Parents and Teachers September 27, 2014 Wichita State University College of Engineering Steve Smith Christa McAuliffe Academy ssmith3@usd259.net Karen Reynolds Wichita State University

More information

GlobiScope Analysis Software for the Globisens QX7 Digital Microscope. Quick Start Guide

GlobiScope Analysis Software for the Globisens QX7 Digital Microscope. Quick Start Guide GlobiScope Analysis Software for the Globisens QX7 Digital Microscope Quick Start Guide Contents GlobiScope Overview... 1 Overview of home screen... 2 General Settings... 2 Measurements... 3 Movie capture...

More information

UNIT1. Keywords page 13-14

UNIT1. Keywords page 13-14 UNIT1 Keywords page 13-14 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

More information

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

AgilEye Manual Version 2.0 February 28, 2007

AgilEye Manual Version 2.0 February 28, 2007 AgilEye Manual Version 2.0 February 28, 2007 1717 Louisiana NE Suite 202 Albuquerque, NM 87110 (505) 268-4742 support@agiloptics.com 2 (505) 268-4742 v. 2.0 February 07, 2007 3 Introduction AgilEye Wavefront

More information

Erik Von Burg Mesa Public Schools Gifted and Talented Program Johnson Elementary School

Erik Von Burg Mesa Public Schools Gifted and Talented Program Johnson Elementary School Erik Von Burg Mesa Public Schools Gifted and Talented Program Johnson Elementary School elvonbur@mpsaz.org Water Sabers (2008)* High Heelers (2009)* Helmeteers (2009)* Cyber Sleuths (2009)* LEGO All Stars

More information

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. LEGO Bowling Workbook

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. LEGO Bowling Workbook Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl LEGO Bowling Workbook Robots are devices, sometimes they run basic instructions via electric circuitry or on most occasions they can be programmable.

More information

The Nomenclature and Geometry of LEGO

The Nomenclature and Geometry of LEGO The Nomenclature and Geometry of LEGO AN OVERVIEW OF LEGO EV3 MINDSTORMS ELEMENTS AND HOW THEY WORK TOGETHER UPDATED 9/27/2015 Required Stuff Please do not wander the building. Rest Rooms Location. Food

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

Third Generation For Android

Third Generation For Android U SE R G U I D E Third Generation For Android FLIR ONE PRO USER GUIDE The FLIR ONE Pro allows you to see the world in a whole new way, with a unique blend of thermal and visible imaging. This User Guide

More information

Rendering a perspective drawing using Adobe Photoshop

Rendering a perspective drawing using Adobe Photoshop Rendering a perspective drawing using Adobe Photoshop This hand-out will take you through the steps to render a perspective line drawing using Adobe Photoshop. The first important element in this process

More information

Electronic Project Interdisciplinary Creation by Amy Barone and Cindy Bronen

Electronic Project Interdisciplinary Creation by Amy Barone and Cindy Bronen Electronic Project Interdisciplinary Creation by Amy Barone and Cindy Bronen 1 What is a Robot? Let s look it up Merriam-Webster: machine that looks like a human being [ ] device that automatically performs

More information

Line-Follower Challenge

Line-Follower Challenge Line-Follower Challenge Pre-Activity Quiz 1. How does a light sensor work? Does the light sensor detect white or black as a higher amount of light reflectivity? Absorbance? 2. Can you think of a method

More information

e d u c a t i o n Detect Dark Line Objectives Connect Teacher s Notes

e d u c a t i o n Detect Dark Line Objectives Connect Teacher s Notes e d u c a t i o n Objectives Learn how to make the robot interact with the environment: Detect a line drawn on the floor by means of its luminosity. Hint You will need a flashlight or other light source

More information

Instructional Technology Center

Instructional Technology Center Partner Teacher Night March 2017 - Lego WeDo 2.0 What are Lego WeDos? WeDos are lego sets that come with a power source and a motor that allows students to create lego constructions that move like robots.

More information

OZOBOT BASIC TRAINING LESSON 1 WHAT IS OZOBOT?

OZOBOT BASIC TRAINING LESSON 1 WHAT IS OZOBOT? OZOBOT BASIC TRAINING LESSON 1 WHAT IS OZOBOT? What students will learn What kind of a robot is Ozobot? How does Ozobot sense its environment and move in it? How can you give commands to Ozobot? Topics

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

Learning Activity Series Control Systems www.nano-cemms.illinois.edu Copyright 2012 Board of Trustees, University of Illinois. All rights reserved. Control Systems Description: In Part 1, the instructor

More information

FLL Coaches Clinic Chassis and Attachments. Patrick R. Michaud

FLL Coaches Clinic Chassis and Attachments. Patrick R. Michaud FLL Coaches Clinic Chassis and Attachments Patrick R. Michaud pmichaud@pobox.com Erik Jonsson School of Engineering and Computer Science University of Texas at Dallas September 23, 2017 Presentation Outline

More information

Sensing the World Around Us. Exploring Foundational Biology Concepts through Robotics & Programming

Sensing the World Around Us. Exploring Foundational Biology Concepts through Robotics & Programming Sensing the World Around Us Exploring Foundational Biology Concepts through Robotics & Programming An Intermediate Robotics Curriculum Unit for Pre-K through 2 nd Grade (For an introductory robotics curriculum,

More information

Properties of two light sensors

Properties of two light sensors Properties of two light sensors Timo Paukku Dinnesen (timo@daimi.au.dk) University of Aarhus Aabogade 34 8200 Aarhus N, Denmark January 10, 2006 1 Introduction Many projects using the LEGO Mindstorms RCX

More information

PHYSICS 220 LAB #1: ONE-DIMENSIONAL MOTION

PHYSICS 220 LAB #1: ONE-DIMENSIONAL MOTION /53 pts Name: Partners: PHYSICS 22 LAB #1: ONE-DIMENSIONAL MOTION OBJECTIVES 1. To learn about three complementary ways to describe motion in one dimension words, graphs, and vector diagrams. 2. To acquire

More information

Handbook. Antenna Rotator Controller

Handbook. Antenna Rotator Controller Handbook Controller 3S design GmbH 2. Südwieke 231 26817 Rhauderfehn Germany www.3sdesign.de Tel. +49-4952-921950 Contents I Table of content Part I 1 1 Operating... 1 2 Installation... 2 1 1 1.1 Operating

More information

Team Project: A Surveillant Robot System

Team Project: A Surveillant Robot System Team Project: A Surveillant Robot System SW & HW Test Plan Little Red Team Chankyu Park (Michel) Seonah Lee (Sarah) Qingyuan Shi (Lisa) Chengzhou Li JunMei Li Kai Lin Software Lists SW Lists for Surveillant

More information

STRUCTURE SENSOR QUICK START GUIDE

STRUCTURE SENSOR QUICK START GUIDE STRUCTURE SENSOR 1 TABLE OF CONTENTS WELCOME TO YOUR NEW STRUCTURE SENSOR 2 WHAT S INCLUDED IN THE BOX 2 CHARGING YOUR STRUCTURE SENSOR 3 CONNECTING YOUR STRUCTURE SENSOR TO YOUR IPAD 4 Attaching Structure

More information

ESCAPE! Player Manual and Game Specifications

ESCAPE! Player Manual and Game Specifications ESCAPE! Player Manual and Game Specifications By Chris Eng and Ken Rice CSS450 Fall 2008 Contents Player Manual... 3 Object of Escape!... 3 How to Play... 3 1. Controls... 3 2. Game Display... 3 3. Advancing

More information

University Libraries ScanPro 3000 Microfilm Scanner

University Libraries ScanPro 3000 Microfilm Scanner University Libraries ScanPro 3000 Microfilm Scanner Help Guide Table of Contents Getting Started 3 Loading the Film 4-5 Viewing Your Film 6-7 Motorized Roll Film Control 6 Crop Box 7 Using the Toolbar

More information

WARNING: Prior to installation, turn the power off to the vending machine and unplug it from its power source. Also, make sure to level the machine.

WARNING: Prior to installation, turn the power off to the vending machine and unplug it from its power source. Also, make sure to level the machine. Installation of Gum and Mint Tray for National 147, 157, 167 Important Note: Please read all instructions thoroughly before continuing with installation of kit. If you are having problems installing the

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

The ideal K-12 science microscope solution. User Guide. for use with the Nova5000

The ideal K-12 science microscope solution. User Guide. for use with the Nova5000 The ideal K-12 science microscope solution User Guide for use with the Nova5000 NovaScope User Guide Information in this document is subject to change without notice. 2009 Fourier Systems Ltd. All rights

More information

Automatic Tool Changer (ATC) for the prolight A Supplement to the prolight 1000 User s Guide

Automatic Tool Changer (ATC) for the prolight A Supplement to the prolight 1000 User s Guide Automatic Tool Changer (ATC) for the prolight 1000 A Supplement to the prolight 1000 User s Guide 1 1995 Light Machines Corporation All rights reserved. The information contained in this supplement (34-7221-0000)

More information

I.1 Smart Machines. Unit Overview:

I.1 Smart Machines. Unit Overview: I Smart Machines I.1 Smart Machines Unit Overview: This unit introduces students to Sensors and Programming with VEX IQ. VEX IQ Sensors allow for autonomous and hybrid control of VEX IQ robots and other

More information

2020 DRAWBOT INSTALLATION AND USE. Robert Ashford Henry Arnold 4-H OABB

2020 DRAWBOT INSTALLATION AND USE. Robert Ashford Henry Arnold 4-H OABB 2020 DRAWBOT INSTALLATION AND USE Robert Ashford Henry Arnold 4-H OABB 2020 DrawBot Software If you are viewing this document, you probably just finished assembling your 2020 DrawBot. In order to use your

More information

Getting Started with the micro:bit

Getting Started with the micro:bit Page 1 of 10 Getting Started with the micro:bit Introduction So you bought this thing called a micro:bit what is it? micro:bit Board DEV-14208 The BBC micro:bit is a pocket-sized computer that lets you

More information

2.4 Sensorized robots

2.4 Sensorized robots 66 Chap. 2 Robotics as learning object 2.4 Sensorized robots 2.4.1 Introduction The main objectives (competences or skills to be acquired) behind the problems presented in this section are: - The students

More information

Objectives: Learn what an Arduino is and what it can do Learn what an LED is and how to use it Be able to wire and program an LED to blink

Objectives: Learn what an Arduino is and what it can do Learn what an LED is and how to use it Be able to wire and program an LED to blink Objectives: Learn what an Arduino is and what it can do Learn what an LED is and how to use it Be able to wire and program an LED to blink By the end of this session: You will know how to use an Arduino

More information

USER GUIDE Third Generation For Android and ios

USER GUIDE Third Generation For Android and ios USER GUIDE Third Generation For Android and ios FLIR ONE PRO USER GUIDE The FLIR ONE Pro allows you to see the world in a whole new way, with a unique blend of thermal and visible imaging. This User Guide

More information

GlassSpection User Guide

GlassSpection User Guide i GlassSpection User Guide GlassSpection User Guide v1.1a January2011 ii Support: Support for GlassSpection is available from Pyramid Imaging. Send any questions or test images you want us to evaluate

More information

Lesson 6 2D Sketch Panel Tools

Lesson 6 2D Sketch Panel Tools Lesson 6 2D Sketch Panel Tools Inventor s Sketch Tool Bar contains tools for creating the basic geometry to create features and parts. On the surface, the Geometry tools look fairly standard: line, circle,

More information

EV3 Advanced Topics for FLL

EV3 Advanced Topics for FLL EV3 Advanced Topics for FLL Jim Keller GRASP Laboratory University of Pennsylvania August 14, 2016 Part 1 of 2 Topics Intro to Line Following Basic concepts Calibrate Calibrate the light sensor Display

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

12. Creating a Product Mockup in Perspective

12. Creating a Product Mockup in Perspective 12. Creating a Product Mockup in Perspective Lesson overview In this lesson, you ll learn how to do the following: Understand perspective drawing. Use grid presets. Adjust the perspective grid. Draw and

More information

What you see is not what you get. Grade Level: 3-12 Presentation time: minutes, depending on which activities are chosen

What you see is not what you get. Grade Level: 3-12 Presentation time: minutes, depending on which activities are chosen Optical Illusions What you see is not what you get The purpose of this lesson is to introduce students to basic principles of visual processing. Much of the lesson revolves around the use of visual illusions

More information

How Do You Make a Program Wait?

How Do You Make a Program Wait? How Do You Make a Program Wait? How Do You Make a Program Wait? Pre-Quiz 1. What is an algorithm? 2. Can you think of a reason why it might be inconvenient to program your robot to always go a precise

More information

Unit 6.5 Text Adventures

Unit 6.5 Text Adventures Unit 6.5 Text Adventures Year Group: 6 Number of Lessons: 4 1 Year 6 Medium Term Plan Lesson Aims Success Criteria 1 To find out what a text adventure is. To plan a story adventure. Children can describe

More information

LOGIC MODULES INTRODUCTION

LOGIC MODULES INTRODUCTION INTRODUCTION With littlebits logic modules, you can program in block form. The logic modules create rules for your circuit to follow, giving you more ability to create interesting and complex interactions.

More information

Table of Contents. Creating Your First Project 4. Enhancing Your Slides 8. Adding Interactivity 12. Recording a Software Simulation 19

Table of Contents. Creating Your First Project 4. Enhancing Your Slides 8. Adding Interactivity 12. Recording a Software Simulation 19 Table of Contents Creating Your First Project 4 Enhancing Your Slides 8 Adding Interactivity 12 Recording a Software Simulation 19 Inserting a Quiz 24 Publishing Your Course 32 More Great Features to Learn

More information

Featuring AcuFil Quilting

Featuring AcuFil Quilting Featuring AcuFil Quilting Compact Footprint and Practical Weight Remarkably Complete, yet Remarkably Compact. The Memory Craft 11000 Special Edition sews, embroiders and quilts with a precision and innovation

More information

Let There Be Light. Opening Files. Deleting National Technology and Science Press

Let There Be Light. Opening Files. Deleting National Technology and Science Press Let There Be Light 2 Better to light a candle than to curse the darkness. Chinese Proverb The Hello World program demonstrates only the output aspect of a computer program. Now let s write a program that

More information

Downloading a ROBOTC Sample Program

Downloading a ROBOTC Sample Program Downloading a ROBOTC Sample Program This document is a guide for downloading and running programs on the VEX Cortex using ROBOTC for Cortex 2.3 BETA. It is broken into four sections: Prerequisites, Downloading

More information

ACTIVITY 1: Measuring Speed

ACTIVITY 1: Measuring Speed CYCLE 1 Developing Ideas ACTIVITY 1: Measuring Speed Purpose In the first few cycles of the PET course you will be thinking about how the motion of an object is related to how it interacts with the rest

More information

Capstone Python Project Features

Capstone Python Project Features Capstone Python Project Features CSSE 120, Introduction to Software Development General instructions: The following assumes a 3-person team. If you are a 2-person team, see your instructor for how to deal

More information

Instruction Manual. 1) Starting Amnesia

Instruction Manual. 1) Starting Amnesia Instruction Manual 1) Starting Amnesia Launcher When the game is started you will first be faced with the Launcher application. Here you can choose to configure various technical things for the game like

More information

Image Processing Tutorial Basic Concepts

Image Processing Tutorial Basic Concepts Image Processing Tutorial Basic Concepts CCDWare Publishing http://www.ccdware.com 2005 CCDWare Publishing Table of Contents Introduction... 3 Starting CCDStack... 4 Creating Calibration Frames... 5 Create

More information

Boiloid Premium Kit Smart Car Assembly Manual v1.0. Bioloid Premium Kit Smart Car Assembly Manual

Boiloid Premium Kit Smart Car Assembly Manual v1.0. Bioloid Premium Kit Smart Car Assembly Manual Boiloid Premium Kit mart Car Assembly Manual v. Bioloid Premium Kit mart Car Assembly Manual Attention! Before proceeding with assembly you must ensure each actuator s horn is properly aligned. To visually

More information

Adding Content and Adjusting Layers

Adding Content and Adjusting Layers 56 The Official Photodex Guide to ProShow Figure 3.10 Slide 3 uses reversed duplicates of one picture on two separate layers to create mirrored sets of frames and candles. (Notice that the Window Display

More information

SIXTH SENSE TECHNOLOGY A STEP AHEAD

SIXTH SENSE TECHNOLOGY A STEP AHEAD SIXTH SENSE TECHNOLOGY A STEP AHEAD B.Srinivasa Ragavan 1, R.Sripathy 2 1 Asst. Professor in Computer Science, 2 Asst. Professor MCA, Sri SRNM College, Sattur, Tamilnadu, (India) ABSTRACT Due to technological

More information

Understanding the Arduino to LabVIEW Interface

Understanding the Arduino to LabVIEW Interface E-122 Design II Understanding the Arduino to LabVIEW Interface Overview The Arduino microcontroller introduced in Design I will be used as a LabVIEW data acquisition (DAQ) device/controller for Experiments

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

Congratulations on your decision to purchase the Triquetra Auto Zero Touch Plate for All Three Axis.

Congratulations on your decision to purchase the Triquetra Auto Zero Touch Plate for All Three Axis. Congratulations on your decision to purchase the Triquetra Auto Zero Touch Plate for All Three Axis. This user guide along with the videos included on the CD should have you on your way to perfect zero

More information

How to Create Animated Vector Icons in Adobe Illustrator and Photoshop

How to Create Animated Vector Icons in Adobe Illustrator and Photoshop How to Create Animated Vector Icons in Adobe Illustrator and Photoshop by Mary Winkler (Illustrator CC) What You'll Be Creating Animating vector icons and designs is made easy with Adobe Illustrator and

More information

Learning serious knowledge while "playing"with robots

Learning serious knowledge while playingwith robots 6 th International Conference on Applied Informatics Eger, Hungary, January 27 31, 2004. Learning serious knowledge while "playing"with robots Zoltán Istenes Department of Software Technology and Methodology,

More information

A - Debris on the Track

A - Debris on the Track A - Debris on the Track Rocks have fallen onto the line for the robot to follow, blocking its path. We need to make the program clever enough to not get stuck! 2017 https://www.hamiltonbuhl.com/teacher-resources

More information

A - Debris on the Track

A - Debris on the Track A - Debris on the Track Rocks have fallen onto the line for the robot to follow, blocking its path. We need to make the program clever enough to not get stuck! 2018 courses.techcamp.org.uk/ Page 1 of 7

More information

NOLTING LONGARM QUILTING MACHINES. The originator of longarm quilting machines since the 1970's

NOLTING LONGARM QUILTING MACHINES. The originator of longarm quilting machines since the 1970's NOLTING LONGARM QUILTING MACHINES The originator of longarm quilting machines since the 1970's Congratulations on the purchase of your new Nolting NV! NEW! The highest performance and most features are

More information

Chassis & Attachments 101. Chassis Overview

Chassis & Attachments 101. Chassis Overview Chassis & Attachments 101 Chassis Overview 2016 1 Introductions Rest rooms location. Food and Drink: Complementary bottled water. Snacks available for purchase from UME FTC teams. Cell phones. Today presentation

More information

FLL Programming Workshop Series

FLL Programming Workshop Series FLL Programming 2017 Workshop Series 2017 1 Prerequisites & Equipment Required Basic computer skills Assembled EV3 Educational robot or equivalent Computer or Laptop with LEGO Mindstorms software installed

More information

STOP! READ THIS FIRST

STOP! READ THIS FIRST STOP! READ THIS FIRST 1 Getting Started With Your Meistergram Embroidery System (the quick guide) Thank you for choosing Pantograms for your embroidery system provider. We encourage you to read the following

More information

In this project, you will create a memory game where you have to memorise and repeat a sequence of random colours!

In this project, you will create a memory game where you have to memorise and repeat a sequence of random colours! Memory Introduction In this project, you will create a memory game where you have to memorise and repeat a sequence of random colours! Step 1: Random colours First, let s create a character that can change

More information

Warning: CHOKING HAZARD -Small Parts. Not for Children Under 9 yrs. Kit Recommended for Ages 12 and up.

Warning: CHOKING HAZARD -Small Parts. Not for Children Under 9 yrs. Kit Recommended for Ages 12 and up. The Original Warning: CHOKING HAZARD -Small Parts. Not for Children Under 9 yrs. Kit Recommended for Ages 12 and up. Table of Contents Soldering.. 3 How the WASP Works.. 7 The Build...... 12 Troubleshooting......30

More information

Understanding Color Theory Excerpt from Fundamental Photoshop by Adele Droblas Greenberg and Seth Greenberg

Understanding Color Theory Excerpt from Fundamental Photoshop by Adele Droblas Greenberg and Seth Greenberg Understanding Color Theory Excerpt from Fundamental Photoshop by Adele Droblas Greenberg and Seth Greenberg Color evokes a mood; it creates contrast and enhances the beauty in an image. It can make a dull

More information

The original image. Let s get started! The final rainbow effect. The photo sits on the Background layer in the Layers panel.

The original image. Let s get started! The final rainbow effect. The photo sits on the Background layer in the Layers panel. Add A Realistic Rainbow To A Photo In this Photoshop photo effects tutorial, we ll learn how to easily add a rainbow, and even a double rainbow, to a photo! As we ll see, Photoshop ships with a ready-made

More information

Mindstorms NXT. mindstorms.lego.com

Mindstorms NXT. mindstorms.lego.com Mindstorms NXT mindstorms.lego.com A3B99RO Robots: course organization At the beginning of the semester the students are divided into small teams (2 to 3 students). Each team uses the basic set of the

More information

How to Pair AbiBird Sensor with App and Account

How to Pair AbiBird Sensor with App and Account How to Pair AbiBird Sensor with App and Account By pairing your AbiBird sensor with your AbiBird app and account, you make it posible for signals to pass from the sensor, via the Cloud, to the AbiBird

More information

Thanks to Autocheck function, it is possible to perform a complete check-up of the robot thanks to a stepby-step

Thanks to Autocheck function, it is possible to perform a complete check-up of the robot thanks to a stepby-step 2.3.23 Autocheck Thanks to Autocheck function, it is possible to perform a complete check-up of the robot thanks to a stepby-step procedure. In order to carry out the procedure, it is important to establish

More information