Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OTOS tuning instructions #121

Merged
merged 3 commits into from
Mar 30, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions road-runner-docs/site/content/raw-docs/v1-0/tuning/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,18 @@ localizers:
to `new PinpointLocalizer(hardwareMap, PARAMS.inPerTick, pose)`. The code
expects a Pinpoint device to be configured with name `"pinpoint"`. **Tuning
for a Pinpoint device is the same as tuning for two dead wheels.**
* **SparkFun Optical Odometry Tracking Sensor (OTOS)**: Change the right-hand-side
of `localizer = ` 
([mecanum](https://github.com/acmerobotics/road-runner-quickstart/blob/5f35f4c22c1ae7c0be5b35da0961c8f3a181ad31/TeamCode/src/main/java/org/firstinspires/ftc/teamcode/MecanumDrive.java#L240),
[tank](https://github.com/acmerobotics/road-runner-quickstart/blob/5f35f4c22c1ae7c0be5b35da0961c8f3a181ad31/TeamCode/src/main/java/org/firstinspires/ftc/teamcode/TankDrive.java#L247))
to `new OTOSLocalizer(hardwareMap, pose)`.
The code expects the OTOS device to be configured with name `"sensor_otos"`.
You can also set your `inPerTick` parameter in your drive class to `1.0`,
as the OTOS itself reports values in inches.
The OTOS localizer also has four extra tuning OpModes described at the end of this guide,
which should be done *before* tuning the rest of the robot.
After those are done, **the OTOS localizer can be tuned like the two dead wheel localizer**,
but without the odometry wheel locations from `AngularRampLogger`.

{{< hint >}}
If you choose to use dead wheels, drive encoders are not needed, and those
Expand Down Expand Up @@ -382,3 +394,35 @@ following controller.
## `SplineTest`

This routine follows a basic spline and validates the previous steps.

## OTOS-Exclusive Tuners

**Goal: Tune the OTOS device.** These steps should be done before tuning the rest of the robot.

### `OTOSAngularScalarTuner`

This routine will help you determine the angular scalar for the OTOS device.
Press start and rotate the robot 10 times (3600 degrees) in place.
Once you are done, copy the angular scalar displayed by telemetry into line 14 of `OTOSLocalizer.java`.

### `OTOSLinearScalarTuner`

This routine will help you determine the linear scalar for the OTOS device.
Press START and drive the robot forward a known distance.
Once you are done, set line 15 of `OTOSLocalizer.java` to the displayed
"Uncorrected Distance Traveled X" value divided by the actual distance traveled.

### `OTOSHeadingOffsetTuner`

This routine will help you determine the heading offset for the OTOS device.
Place the side of the robot against a field wall and press START, then push the robot forward a known distance.
Once you are done, set the `h` argument to the Pose2D in line 16 of `OTOSLocalizer.java`
to the displayed "Heading Offset (radians)" value.

### `OTOSPositionOffsetTuner`

This routine will help you determine the position offset for the OTOS device.
Place the robot in the corner of two field walls and press START,
then rotate the robot 180 degrees and push it back into the corner.
Then copy the displayed "X Offset" and "Y Offset" values
into the `x` and `y` arguments to the Pose2D in line 16 of `OTOSLocalizer.java`.