Robotics Programming Using Shaft Encoders

Slides:



Advertisements
Similar presentations
ROBOTC for CORTEX While Loops Part 1
Advertisements

While Loops and If-Else Structures
Automation and Robotics
Autonomy using Encoders Intro to Robotics. Goal Our new task is to navigate a labyrinth. But this time we will NOT use motor commands in conjunction with.
Testbed: Exercises.
ROBOTC for VEX Online Professional Development
ROBOTC Software Introduction. ROBOTC Software ROBOTC developed specifically for classrooms and competitions Complete programming solution for VEX Cortex.
ROBOTC for VEX On-Site Professional Development
Getting Started in RobotC // Comment task main() motor[] {} wait1Msec() ; = Header Code Compile Download Run Take out your notes.
While and If-Else Loops ROBOTC Software. While Loops While loop is a structure within ROBOTC Allows a section of code to be repeated as long as a certain.
Automated Mechanisms Help. Potentiometers Potentiometer Check –Analog Port 2 How they work –Analog sensor –Measures rotation of a shaft between 0 and.
RobotC Remote Control. Learning Objectives: Focusing on Virtual World with Physical Examples Understand Real-Time Joystick Mapping Understand how to use.
Programming - Motion Intro to Robotics. Motors and Sensors Setup The first thing we need to do is tell ROBOTC that we have motors on our robot. Choose.
Programming your Robot
VEX and Robot C Chris Patterson Frisco ISD CTE Center Presented by.
Vex Robotics Program Two: Using two motors. Program two: using the motors In the last section, you learned how to turn on one motor. Now, you will take.
Automation and Robotics.  First you select the platform type so that you can use Natural Language PLTW.
Vex Robotics program three: using motors and sensors together.
ROBOTC for VEX Online Professional Development. Homework Questions Thoughts? Questions?
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.
ROBOTC for VEX Online Professional Development. Homework Questions Thoughts? Questions? Concerns? Homework Policy: All homework is due Friday, August.
Decision Making: while loops and Boolean Logic. While Loops A while loop is a structure within ROBOTC which allows a section of code to be repeated as.
Sensor Information: while loops and Boolean Logic.
ROBOTC for VEX Online Professional Development Jesse Flot.
ROBOTC for CORTEX Teacher Training © 2011 Project Lead The Way, Inc. Automation and Robotics VEX.
Programming Design ROBOTC Software Principles Of Engineering
CHAPTER 4 DECISIONS & LOOPS
VEX Cortex Video Trainer using ROBOTC
ROBOTC for VEX Online Professional Development
ROBOTC for VEX Online Professional Development
ROBOTC for VEX On-Site Professional Development
Robotics Programming Using Shaft Encoders
ROBOTC for VEX Online Professional Development
ROBOTC for VEX Online Professional Development
StartStruck in a Virtual World
Automation and Robotics
Programming Design ROBOTC Software Computer Integrated Manufacturing
RobotC Sensors.
Movement using Shaft Encoders
Using Encoders to go Straight
Autonomy using Encoders
RobotC Sensors.
Getting Started in RobotC
Using variables, for..loop and functions to help organize your code
Automation and Robotics
TECH 1 BAMS Technology Education
While Loops and If-Else Structures
Sensors and Logic Switches
Basketball Drill Programming Alternatives
Getting Started in RobotC
Auto Straightening using VEX Shaft Encoders
While Loops and If-Else Structures
Programming Design ROBOTC Software Principles Of Engineering
While Loops and If-Else Structures
While Loops and If-Else Structures
While Loops and If-Else Structures
Programming - Buttons Intro to Robotics.
RobotC While loop When and how to use the while loop
if-else Structures Principles of Engineering
Automation with RobotC
Robotics Programming Using Shaft Encoders
Robotics Programming Using Shaft Encoders
Remote Control For this activity we will use the Squarebot
While Loops and If-Else Structures
Automation with RobotC
While Loops and If-Else Structures
Programming Design ROBOTC Software Principles of Engineering
While Loops And If-Else Structures
Is there an alternative to copy-paste for repeating code?
Presentation transcript:

Robotics Programming Using Shaft Encoders

Learning Objectives Be able to use shaft encoders to control robot behavior. Understand how a shaft encoder works Understand the parts of a while loop Be able to set up RobotC so you can watch the values of the sensors Be able to write a program that uses Shaft Encoders to solve mazes.

Movement using Shaft Encoders Configure (Motors and Sensors Setup) We will look at the following in this section SensorValue[] while Conditions (<, >, <=, >=, !=, ==)

Getting Started/ Review Open RobotC Set up a Squarebot rightMotor: port2 leftMotor: port3 Add code to make it go forward for 1 second and test in the Labyrinth Challenge Virtual World. Make sure you select ‘VEX Squarebot’ from the ‘ROBOTS’ menu in the virtual world. Make sure the robot moves forward and not just spins.

Taking a Look at Shaft Encoders Cortex Video Training Shaft Encoder Video #1 Key Questions: What is a shaft encoder? How many ticks per revolution? http://dgaixldln.curriculum.cs2n.org/vcvt/lesson/3-4ShaftEncoders1.html

Quadrature/Shaft/Rotation Encoder 360 Ticks per revolution Counts up going forward, down going backwards Takes two digital input ports on the Cortex If the wires are plugged in in reverse order, then the counter will count backwards.

Configuring the Encoders Configure the encoders on your warm-up code. Robot -> Motors and Sensors Setup In your notes, summarize how to set up the Shaft Encoders.

Name and Select 1) Select the VEX Cortex Digital Sensors 1-12 tab. 3) Select the Sensor Type. Quadrature Encoder in this case. 2) Name the encoder. (Start with a letter, no spaces, no punctuation, no reserved words, descriptive.) 4) Click ‘Apply’ and ‘OK’ Note: On the Cortex the quadrature encoder cables must be plugged in next to each other.

pragma Statements Created

Cortex Video: Using the While loop Key Questions What are the three parts of a while loop? Why is clearing the encoders important? Is the while loop constantly checking its condition? Shaft Encoders Video 3

Initializing and Reading the Encoder SensorValue[rightEncoder] is used to initialize (set to 0 in this case) and read encoder values. Initializes both encoder values to 0. While the value of the left encoder is less than 1800 it will go through the loop again. while (condition) { }

While Loops A while loop is a structure within ROBOTC which allows a section of code to be repeated as long as a certain condition remains true. There are three main parts to every while loop.

1. The word “while” Every while loop begins with the keyword “while”.

2. The Condition The condition controls how long or how many times a while loop repeats. While the condition is true, the while loop repeats; when the condition is false, the while loop ends and the robot moves on in the program. The condition is checked every time the loop repeats, before the commands between the curly braces are run.

3. Commands to be Repeated Commands placed between the curly braces will repeat while the (condition) is true when the program checks at the beginning of each pass through the loop.

Boolean Logic Decisions robots make must always based on questions which have only two possible answers: yes or no, true or false. Statements that can be only true or false are called Boolean statements, and their true-or-false value is called a truth value.

Boolean Logic Conditions: True or False Conditions: Compare two items and return a true or a false value RobotC Comparison Operations < Is less than > Is greater than <= Is less than or equal to >= Is greater than or equal to == Is equal to != Is no equal to

Boolean Logic

Back to the Encoder Example SensorValue[rightEncoder] is used to initialize (set to 0 in this case) and read encoder values. Initializes both encoder values to 0. While the value of the left encoder is less than 1800 it will go through the loop again. while (condition) { } What happens if you add a wait1Msec(12000); command inside the while loop? Test this code in the Virtual World.

Encoder Video 4: The Sensor Debug Window Key Questions: How do you watch the values of the sensors change while the robot is running? Link to Video

Debugging: Watching the Sensor Values Open Debugger window for Sensors Robot->Degugger Windows -> Sensors

Watch the Values Run the program in the Virtual World Watch the sensor values change Sensor Values

Video #5: Forward and Turning Key Questions: What does it mean when the values are going down? What happens if you do not reset the shaft encoder values? Link to Video

Online Time Motor Encoder Movement Challenges using only encoders, no wait1Msec(). Basketball Drills Turning Investigation Labyrinth Challenge