Update PinpointLocalizer.java

This commit is contained in:
junkjunk123
2024-12-06 09:17:29 -08:00
committed by GitHub
parent bdc0de4eeb
commit fd5d6b716b

View File

@ -79,13 +79,11 @@
// //TODO: Set encoder directions // //TODO: Set encoder directions
// odo.setEncoderDirections(GoBildaPinpointDriver.EncoderDirection.FORWARD, GoBildaPinpointDriver.EncoderDirection.FORWARD); // odo.setEncoderDirections(GoBildaPinpointDriver.EncoderDirection.FORWARD, GoBildaPinpointDriver.EncoderDirection.FORWARD);
// //
// odo.resetPosAndIMU(); // resetPinpoint();;
//
// setStartPose(setStartPose); // setStartPose(setStartPose);
// totalHeading = 0; // totalHeading = 0;
// previousHeading = setStartPose.getHeading(); // previousHeading = setStartPose.getHeading();
//
// resetPinpoint();
// } // }
// //
// /** // /**
@ -142,7 +140,6 @@
// */ // */
// @Override // @Override
// public void setPose(Pose setPose) { // public void setPose(Pose setPose) {
// resetPinpoint();
// odo.setPosition(new Pose2D(DistanceUnit.INCH, setPose.getX(), setPose.getY(), AngleUnit.RADIANS, setPose.getHeading())); // odo.setPosition(new Pose2D(DistanceUnit.INCH, setPose.getX(), setPose.getY(), AngleUnit.RADIANS, setPose.getHeading()));
// } // }
// //
@ -195,17 +192,29 @@
// } // }
// //
// /** // /**
// * This resets the IMU. // * This resets the IMU. Note: This does not change the estimated heading orientation.
// */ // */
// @Override // @Override
// public void resetIMU() { // public void resetIMU() throws InterruptedException {
// odo.recalibrateIMU(); // odo.recalibrateIMU();
//
// try {
// Thread.sleep(300);
// } catch (InterruptedException e) {
// throw new RuntimeException(e);
// }
// } // }
// //
// /** // /**
// * This resets the OTOS. // * This resets the pinpoint.
// */ // */
// public void resetPinpoint(){ // private void resetPinpoint() {
// odo.resetPosAndIMU(); // odo.resetPosAndIMU();
//
// try {
// Thread.sleep(300);
// } catch (InterruptedException e) {
// throw new RuntimeException(e);
// }
// } // }
//} //}