greenmountainrobotics / 2024-Robot

2024 Robot code for FRC 9101, Green Mountain Robotics
GNU General Public License v3.0
0 stars 1 forks source link

Measure Robot Pose Setpoints #13

Closed henrikvtcodes closed 7 months ago

henrikvtcodes commented 8 months ago

To design effective autonomous routines and useful teleop driver automations, we need to measure & record robot poses on the field.

Positions

Impl. Details

public enum Position {

    AmpShootFar(new Pose2d()),

    AmpShootClose(new Pose2d());

    public final Pose2d pose;

    private Position(Pose2d pose) {
      this.pose = pose;
    }
}
recursiveforte commented 8 months ago

what is ColorScheme?

henrikvtcodes commented 8 months ago

Oops that is something that I forgot to change from the place that I copied and pasted that from