Skip to content

Commit b7148a1

Browse files
committed
Removed the gyro sensor and replaced it with an
inertial sensor - The gyro wasn't updating properly and we couldn't understand how to view the angles it was returning, so we simply replaced it with a theoretically more precise inertial sensor - This includes a calibrateOnce function that calibrates the sensor every time a turnTask is called in the task tree - As it stands now, the robot rotates about 90 degrees in the wrong direction before correcting itself 180 degrees in the opposite direciton when a 90 degree TurnTask is called, this needs to be fixed later
1 parent 3e4bd9c commit b7148a1

File tree

4 files changed

+32
-21
lines changed

4 files changed

+32
-21
lines changed

2024/prototype/intake_mechanisms/include/autonomous_task_tree.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,12 @@ class TurnTask: public Task {
164164
*
165165
* @param angleDegrees the amount to rotate in degrees: positive numbers
166166
* rotate clockwise and negative numbers rotate counterclockwise
167-
* @param gyro_ a yaw rate gyroscope used to measure the current chasis's
168-
* bearing
167+
* @param inertialSensor_ an inertial sensor that we use to measure the
168+
* robot's yaw angle
169169
* @param drive a reference to an Idrive object which actually does the
170170
* driving
171171
*/
172-
TurnTask(double angleDegrees, vex::gyro gyro_, Idrive& drive);
172+
TurnTask(double angleDegrees, vex::inertial inertialSensor_, Idrive& drive);
173173

174174
bool done() const;
175175

@@ -182,7 +182,7 @@ class TurnTask: public Task {
182182
double startAngle;
183183

184184
double desiredAngle_;
185-
vex::gyro gyro_;
185+
vex::inertial inertialSensor_;
186186
Idrive& drive;
187187
PidController pidController;
188188
};

2024/prototype/intake_mechanisms/include/robot-config.h

+3
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,7 @@ const double TURN_TASK_EPSILON_DEGREES = 1;
7474
*/
7575
void vexcodeInit(void);
7676

77+
// Port number for the inertial sensor
78+
const int INERTIAL_PORT = 20-1;
79+
7780
#endif // (ifndef __ROBOT_CONFIG_INCLUDED__)

2024/prototype/intake_mechanisms/src/autonomous_task_tree.cpp

+23-15
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,16 @@
1515
using namespace vex;
1616
using namespace std;
1717

18+
19+
20+
void calibrateOnce(vex::inertial& sensor) {
21+
static bool initialized = false;
22+
if (!initialized) {
23+
sensor.calibrate();
24+
initialized = true;
25+
}
26+
}
27+
1828
/**
1929
* Returns the sign of a number.
2030
* @param number the number to check the sign of
@@ -239,16 +249,16 @@ bool DriveStraightTask::done() const {
239249
* Definitions for the TurnTask. *
240250
*********************************/
241251

242-
TurnTask::TurnTask(
243-
double desiredAngle,
244-
vex::gyro gyroscope,
245-
Idrive& driveObject
246-
) :
247-
Task("r"),
252+
TurnTask::TurnTask(double desiredAngle,
253+
vex::inertial inertialSensor,
254+
Idrive& driveObject)
255+
: Task("r"),
248256
desiredAngle_ {desiredAngle},
249-
gyro_ {gyroscope},
257+
inertialSensor_ {inertialSensor},
250258
drive {driveObject},
251-
pidController {TURN_TASK_P_GAIN, TURN_TASK_I_GAIN, TURN_TASK_D_GAIN} {}
259+
pidController {TURN_TASK_P_GAIN, TURN_TASK_I_GAIN, TURN_TASK_D_GAIN} {
260+
calibrateOnce(inertialSensor);
261+
}
252262

253263
// Scenario: Your robot's start angle is 45 degrees.
254264
// The desired angle is 40 degrees.
@@ -274,8 +284,6 @@ bool DriveStraightTask::done() const {
274284
//
275285

276286
void TurnTask::start() {
277-
gyro_.resetAngle();
278-
startAngle = gyro_.angle();
279287
// drive.drive(0.0, 0.6);
280288
}
281289

@@ -285,17 +293,17 @@ bool DriveStraightTask::done() const {
285293
}
286294

287295
bool TurnTask::done() const {
288-
double currentAngle = const_cast<TurnTask*>(this)->gyro_.angle();
296+
double currentAngle = const_cast<TurnTask*>(this)->inertialSensor_.heading();
289297
double delta = signedDelta(currentAngle, desiredAngle_);
290298

291299
if (fabs(delta) < TURN_TASK_EPSILON_DEGREES) {
292300
drive.drive(0, 0);
293301
return true;
294302
} else {
295-
// double setPoint = currentAngle + delta;
296-
// double power = pidController.calculate(currentAngle, setPoint);
297-
double power = pidController.calculate(currentAngle, desiredAngle_);
298-
drive.drive(0, power);
303+
double setPoint = currentAngle + delta;
304+
double power = pidController.calculate(0, delta);
305+
// double power = pidController.calculate(currentAngle, desiredAngle_);
306+
drive.drive(0, -power);
299307
return false;
300308
}
301309
}

2024/prototype/intake_mechanisms/src/main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ void pre_auton() {
201201
*/
202202
void autonomous() {
203203
auto prototype = makePivotRampPrototype();
204-
auto gyro = vex::gyro(Seventeen59A.ThreeWirePort.G);
204+
vex::inertial inertialSensor(INERTIAL_PORT);
205205

206206
// auto fullAutonRootTask = make_shared<WaitMillisecondsTask>(0);
207207
// auto B = make_shared<DriveStraightTask>(-0.4572 * 100, prototype);
@@ -256,7 +256,7 @@ void autonomous() {
256256
//auto simpleRootTask = make_shared<TurnTask>(36.56, gyro, prototype);
257257

258258
auto rootTask = make_shared<WaitMillisecondsTask>(0);
259-
auto turnTest = make_shared<TurnTask>(90, gyro, prototype);
259+
auto turnTest = make_shared<TurnTask>(90, inertialSensor, prototype);
260260
// auto DriveTask = make_shared<TestDriveTask>(2, prototype);
261261
// auto stopTask = make_shared<DriveStraightTask>(0, prototype);
262262
// addTask(rootTask, DriveTask);

0 commit comments

Comments
 (0)