Photos and Sensor Instructions

Slides:



Advertisements
Similar presentations
Engineering Roles We will be forming groups of 3 students
Advertisements

Build the Tumbler.
Automation and Robotics
Photos and Sensor Instructions
Connecting VEX and ROBOTC
1 ©2006 INSciTE Lab Two Task: Make the program from Lab One (Move forward 5 rotations and turn right 90 degrees) into a MyBlock.
LEGO Mindstorms NXT Programming We will be using the Common Palette for our Robots This is how you download your program onto the brick Drag and drop a.
Testbed: Exercises.
The George Washington University Electrical & Computer Engineering Department ECE 002 Dr. S. Ahmadi Class 2.
Programming Concepts (Part B) ENGR 10 Introduction to Engineering 1 Hsu/Youssefi.
Available at: Lesson 3.6 – Program Line Follower in Autonomous Mode Program Line Follower in Autonomous Mode.
Robot C and Natural Language
Technical Writing for Robotic Coding!.  du/products/teaching_robotc_cort ex/fundamentals/introtoprogramm ing/thinking/videos/fundamentals.
Wall Encounter By Made easy by Dwayne Abuel.
AUTOMATION WITH ROBOTC Starting to write and troubleshoot computer code.
Lego MindStorm An Introduction to Blocks. Blocks Blocks are used to give instructions to your robot. There are many types of blocks You can use the blocks.
Castor Bot. Now, we will begin creating a robot Log onto your computer On your screen, click on the website labeled “castor bot” Your building instructions.
Introduction to Vexnet
Photos and Sensor Instructions
Oregon Robotics Tournament and Outreach Program RCX Basics.
Automated Mechanisms Help. Potentiometers Potentiometer Check –Analog Port 2 How they work –Analog sensor –Measures rotation of a shaft between 0 and.
Designing a Next-Generation Surgical Robot Activity.
By Joshua Shaw.  Now that we have a program, we should see how it works in the real world  To do this we need the Cortex and the orange USB cable 
VEX and Robot C Chris Patterson Frisco ISD CTE Center Presented by.
Automation and Robotics.  First you select the platform type so that you can use Natural Language PLTW.
Casne.ncl.ac.uk Taking care of the CrumbleBot Please do NOT stress the robot's motors 1.Do NOT push the robot 2.Do NOT hold the.
Mechanical Components and Programming Ken Youssefi Introduction to Engineering – E10 1.
MEH108 - Intro. To Engineering Applications KOU Electronics and Communications Engineering.
Robot C and Natural Language. Create a folder Create a folder on your desktop to insert all your Robot C files, Here you will begin with your template.
Connect VEX and ROBOTC Electrical Engineer Responsibilities © 2011 Project Lead The Way, Inc.Automation and Robotics VEX.
ROBOTC for VEX Online Professional Development. Homework Questions Thoughts? Questions?
Introduction to VEX® components
Project Overview  Introduction  Clawbot Build  Design Modification  Design Development  Programming  Sensors  Advanced Sensors  Open design challenges.
LESSON 04 Starter Key words: Programmable, environment, design, manufacturing and application Modelling VEX Tumbler solutions In this lesson you are.
Testbed Coding In this activity you will code different challenges for the Testbed. For each challenge a sample program is shown. Use what this sample.
Programming Design ROBOTC Software. Behavior-Based Programming A behavior is anything your robot does –Turning on a single motor or servo Three main types.
Basic Programming: Until Commands. The Problem with Wait States Motor Speed is affected by battery power. –If the battery is fully charged, the motors.
Robotics Programming Wall Follow Line tracking for a set amount of time Line tracking for a distance.
Project Overview  Introduction  Frame Build  Motion  Power  Control  Sensors  Advanced Sensors  Open design challenges  Project evaluation.
ROBOTC for CORTEX Teacher Training © 2011 Project Lead The Way, Inc. Automation and Robotics VEX.
Programming Design ROBOTC Software Principles Of Engineering
Introduction to Vexnet
Electrical Engineer Responsibilities
Automation with RobotC
Activity 4.2.8a Satellite Flight Satellite Robot Construction Guide
NXT Mindstorms Kit Programming
Know your Robot Electrical Parts
ROBOTC for VEX Online Professional Development
Electrical Engineer Responsibilities
LESSON 04. LESSON 04 LESSON 04 STARTER Modelling VEX Tumbler solutions In this lesson you are going to adapt and improve your virtual CAD VEX Tumbler.
Introduction to Handshaking Communication with SSC-32U
ROBOTC for VEX Online Professional Development
Project Overview Introduction Clawbot Build Design Modification
Touch Sensor.
Introduction to Handshaking Communication with SSC-32
Electrical Engineer Responsibilities
Testbed 7) Wheel Assembly 6) Battery Strap 8) Clawbot 5) Limit Switch
Automation and Robotics
TESTBED ACADEMY Final Exam.
Programming Part 2 Mod Kit
Electrical Engineer Responsibilities
RobotC Sensors.
Automation and Robotics
TECH 1 BAMS Technology Education
Activity 4.2.8a Satellite Flight Satellite Robot Construction Guide
SENSORS.
Programming Design ROBOTC Software Principles Of Engineering
Automation with RobotC
Automation with RobotC
Oregon Robotics Tournament and Outreach Program
Presentation transcript:

Photos and Sensor Instructions VEX Testbed Photos and Sensor Instructions Learn about Vex Sensors

VEX Testbed Please open to page 23 in your packet. Use the VEX Testbed powerpoint on Edmodo to help you fill out the questions on pages 23- 25.

VEX Testbed SENSORS MOTORS We will use the motors and sensors in your toolkit to build the testbed MOTORS

Sensor Arrangement To the right of the cortex, attach the limit switch, bump switch, and line tracker To the left of the cortex, attach the potentiometer and place any type of gear on the top

VEX Cortex The cortex is the ‘brain’ of all our builds and also the costliest piece of equipment we use. Please treat it with care.

VEX Cortex All of our robotic systems are battery powered. The battery plugs in the end of the cortex next to the ON/OFF switch

VEX Cortex - Sensors The right side of the cortex has “MOTOR INPUTS” The left side of the cortex has digital and analog “SENSOR INPUTS”

VEX Cortex - Motors First let’s hook up a motor. You need to use a “MOTOR CONTROLLER” whenever you connect a motor to the cortex. (To convert 2 wires into 3)

Notice the Black wire plugs in next to the numbers VEX Cortex - Motors Use ports 2 or 3 for motor connections # 1 is for the CLAW! #2 is for the RIGHT motor #3 is for the LEFT motor Notice the Black wire plugs in next to the numbers

Motors The motors are used to turn any axle attached to it. They are able to move in both forward and reverse directions. You need to use MOTOR SCREWS to attach the motors to your build. Code for motors might look something like this:

VEX Cortex – Digital Sensors Digital Sensors include: Limit Switch (Port 1) Bump Switch (Port 2) LED lights (Next Slide)

VEX Cortex – Digital Sensors Digital Sensors include: Limit Switch (Port 1) Bump Switch (Port 2) LED lights (Port 12)

VEX Cortex – Analog Sensors Analog Sensors include: Line Tracker (Port 1) Potentiometer (Port 2)

Limit Switch – Digital Port 1 The limit Switch can be used to trigger an action when it is pressed. This can include: Start Stop Wait A code using the limit switch would look like:

Bump Switch – Digital Port 2 The bump Switch can be used to trigger an action when it is pressed. This can include: Start Stop Wait A code using the bump switch would look like:

LED (any color)– Digital Port 12 LED’s are lights! We have green, red, and yellow LED’s with our VEX kits You need to use another switch to trigger the LED’s and turn them on or off A code using the LED’s might look like:

Line Tracker– Analog Port 1 The line tracker can be used to sense light and dark. Use this sensor to trigger other actions, such as Start Stop Wait Turn on/off LED’s A code using the line tracker would look like:

Potentiometer– Analog Port 2 The Potentiometer can be used to sense movement in an arc. It does not move on its own, rather it needs to be connected to a motor. CAUTION: It is very sensitive, do NOT force it to move or the internal parts will break. A code using the Potentiometer would look like: