These custom functions for pivoting or turning the robot use the wheel encoders:
pivotAngle() — pivot on both wheels by specific angle
turnAngle() — turn on one wheel by specific angle
pivotAngle()
A custom function named pivotAngle() uses the wheel encoders to make your robot pivot by a specified angle.
When pivoting, the robot turns in a circle centered between the robot's wheels. The distance between the centers of the RedBot wheel treads is 6.125 inches, which represents the diameter of the robot's pivot circle. If the robot pivoted 360°, the distance traveled by each wheel would be equal to the circumference of this pivot circle:
C = 𝛑 × d = 3.14 × 6.125 = 19.23 inches
Usually you will want your RedBot to pivot by a specific angle that is less than 360° — such as 45°, 90°, 180°, etc. For any specific angle, you can calculate its arc length (i.e., a "partial circumference"):
L = 𝛂 / 360° × 𝛑 × d
The arc length (L) represents the distance each wheel will travel while pivoting by a specific angle (𝛂).
For example, when pivoting by 90°, the arc length is:
L = 90° / 360° × 𝛑 × d = 0.25 × 3.14 × 6.125 = 4.81 inches
Once this arc length is calculated for a specific angle, the wheel encoders can be used to control how long the wheels are pivoted. This is what the pivotAngle() function does.
When calling the pivotAngle() function, you must pass in a value for the desired angle (degrees) by listing the value inside the parentheses after the function's name.:
A positive angle will pivot the robot clockwise to the right.
A negative angle will pivot the robot counter-clockwise to the left.
For example, to make your robot pivot 90 degrees right:
pivotAngle(90);
To make your robot pivot 90 degrees left:
pivotAngle(-90);
The pivotAngle() function requires these objects as part of your global variables before the setup() function:
RedBotMotors motors;RedBotEncoderencoder(A2,10);
Add the pivotAngle() custom function after the loop() function:
voidpivotAngle(float angle) { // use wheel encoders to pivot (turn) by specified angle // set motor power for pivotingint power =100; // clockwiseif (angle <0) power *=-1; // negative power for counter-clockwise // use correction to improve angle accuracy // adjust correction value based on test resultsfloat correction =-5.0; // need decimal point for float valueif (angle >0) angle += correction;elseif (angle <0) angle -= correction; // variable for tracking wheel encoder countslong rightCount =0; // values based on RedBot's encoders, motors & wheelsfloat countsPerRev =192.0; // 192 encoder ticks per wheel revolutionfloat wheelDiam =2.56; // wheel diameter = 65 mm = 2.56 infloat wheelCirc = PI * wheelDiam; // wheel circumference = 3.14 x 2.56 in = 8.04 infloat pivotDiam =6.125; // pivot diameter = distance between centers of wheel treads = 6.125 infloat pivotCirc = PI * pivotDiam; // pivot circumference = 3.14 x 6.125 in = 19.23 in // based on angle, calculate distance (arc length) for pivotfloat distance =abs(angle) /360.0* pivotCirc; // based on distance, calculate number of wheel revolutionsfloat numRev = distance / wheelCirc; // based on number of revolutions, calculate target encoder countfloat targetCount = numRev * countsPerRev; // reset encoder counters and start pivotingencoder.clearEnc(BOTH);delay(100);motors.pivot(power); // keeps looping while right encoder count less than target countwhile (abs(rightCount) <abs(targetCount)) { // get current wheel encoder count rightCount =encoder.getTicks(RIGHT);delay(10); // short delay before next reading } // target count reachedmotors.brake();delay(250);}
turnAngle()
A custom function named turnAngle() uses the wheel encoders to make your robot turn on one wheel by a specified angle.
Turning on one wheel is less tight than pivoting (which has a "zero turn radius"):
When turning on one wheel, the robot turns in a circle centered on the stopped wheel. The distance between the centers of the RedBot wheel treads is 6.125 inches, which represents the radius of the robot's turn circle, so the diameter of this turn circle is 12.25 inches. If the robot turned 360° on one wheel, the distance traveled by the driving wheel would be equal to the circumference of this turn circle:
C = 𝛑 × d = 3.14 × 12.25 = 38.47 inches
Usually you will want your RedBot to turn by a specific angle that is less than 360° — such as 45°, 90°, 180°, etc. For any specific angle, you can calculate its arc length (i.e., a "partial circumference"):
L = 𝛂 / 360° × 𝛑 × d
The arc length (L) represents the distance that the driving wheel will travel while turning by that specific angle (𝛂).
For example, when turning on one wheel by 90°, the arc length is:
L = 90° / 360° × 𝛑 × d = 0.25 × 3.14 × 12.25 = 9.62 inches
Once this arc length is calculated for a specific angle, the wheel encoders can be used to control how long the driving wheel travels. This is what the turnAngle() function does.
When calling the turnAngle() function, you must pass in a value for the desired angle (degrees) by listing the value inside the parentheses after the function's name.:
A positive angle will turn the robot clockwise to the right.
A negative angle will turn the robot counter-clockwise to the left.
For example, to make your robot turn on one wheel 90 degrees right:
turnAngle(90);
To make your robot turn on one wheel 90 degrees left:
turnAngle(-90);
The turnAngle() function requires these objects as part of your global variables before the setup() function:
RedBotMotors motors;RedBotEncoderencoder(A2,10);
Add the turnAngle() custom function after the loop() function:
voidturnAngle(float angle) { // use wheel encoders to turn on one wheel by specified angle // set motor power for pivotingint power =100; // use correction to improve angle accuracy // adjust correction value based on test resultsfloat correction =5.0; // need decimal point for float valueif (angle >0) angle += correction;elseif (angle <0) angle -= correction; // variables for tracking wheel encoder countslong leftCount =0;long rightCount =0; // values based on RedBot's encoders, motors & wheelsfloat countsPerRev =192.0; // 192 encoder ticks per wheel revolutionfloat wheelDiam =2.56; // wheel diameter = 65 mm = 2.56 infloat wheelCirc = PI * wheelDiam; // wheel circumference = 3.14 x 2.56 in = 8.04 infloat turnDiam =12.25; // turn diameter = 2 x distance between centers of wheel treads = 2 x 6.125 infloat turnCirc = PI * turnDiam; // turn circumference = 3.14 x 12.25 in = 38.47 in // based on angle, calculate distance (arc length) for turnfloat distance =abs(angle) /360.0* turnCirc; // based on distance, calculate number of wheel revolutionsfloat numRev = distance / wheelCirc; // based on number of revolutions, calculate target encoder countfloat targetCount = numRev * countsPerRev; // reset encoder countersencoder.clearEnc(BOTH);delay(100); // based on turn angle, turn using either left wheel or right wheelif (angle >0) { // turn clockwise using left wheel onlymotors.rightStop();motors.leftDrive(power); // keeps looping while left encoder count less than target countwhile (leftCount < targetCount) { // get current wheel encoder count leftCount =encoder.getTicks(LEFT);delay(10); // short delay before next reading } }else { // turn counter-clockwise using right wheel onlymotors.leftStop();motors.rightDrive(power); // keeps looping while right encoder count less than target countwhile (rightCount < targetCount) { // get current wheel encoder count rightCount =encoder.getTicks(RIGHT);delay(10); // short delay before next reading } } // target count reachedmotors.stop();delay(250); // uncomment following statements only if using driveStraight() elsewhere in program // encoder.clearEnc(BOTH); // prevLeftCount = 0; // prevRightCount = 0;}