mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-29 02:21:44 +00:00
Co-authored-by: Tyler Veness <calcmogul@gmail.com> Co-authored-by: Matt <matthew.morley.ca@gmail.com>
96 lines
3.7 KiB
C++
96 lines
3.7 KiB
C++
/*----------------------------------------------------------------------------*/
|
|
/* Copyright (c) 2019 FIRST. All Rights Reserved. */
|
|
/* Open Source Software - may be modified and shared by FRC teams. The code */
|
|
/* must be accompanied by the FIRST BSD license file in the root directory of */
|
|
/* the project. */
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <units/units.h>
|
|
|
|
#include "DifferentialDriveKinematics.h"
|
|
#include "frc/geometry/Pose2d.h"
|
|
|
|
namespace frc {
|
|
/**
|
|
* Class for differential drive odometry. Odometry allows you to track the
|
|
* robot's position on the field over the course of a match using readings from
|
|
* 2 encoders and a gyroscope.
|
|
*
|
|
* Teams can use odometry during the autonomous period for complex tasks like
|
|
* path following. Furthermore, odometry can be used for latency compensation
|
|
* when using computer-vision systems.
|
|
*
|
|
* Note: It is important to reset both your encoders to zero before you start
|
|
* using this class. Only reset your encoders ONCE. You should not reset your
|
|
* encoders even if you want to reset your robot's pose.
|
|
*/
|
|
class DifferentialDriveOdometry {
|
|
public:
|
|
/**
|
|
* Constructs a DifferentialDriveOdometry object.
|
|
*
|
|
* @param kinematics The differential drive kinematics for your drivetrain.
|
|
* @param initialPose The starting position of the robot on the field.
|
|
*/
|
|
explicit DifferentialDriveOdometry(DifferentialDriveKinematics kinematics,
|
|
const Pose2d& initialPose = Pose2d());
|
|
|
|
/**
|
|
* Resets the robot's position on the field.
|
|
*
|
|
* @param pose The position on the field that your robot is at.
|
|
*/
|
|
void ResetPosition(const Pose2d& pose) {
|
|
m_pose = pose;
|
|
m_previousAngle = pose.Rotation();
|
|
}
|
|
|
|
/**
|
|
* Updates the robot's position on the field using forward kinematics and
|
|
* integration of the pose over time. This method takes in the current time as
|
|
* a parameter to calculate period (difference between two timestamps). The
|
|
* period is used to calculate the change in distance from a velocity. This
|
|
* also takes in an angle parameter which is used instead of the
|
|
* angular rate that is calculated from forward kinematics.
|
|
*
|
|
* @param currentTime The current time.
|
|
* @param angle The angle of the robot.
|
|
* @param wheelSpeeds The current wheel speeds.
|
|
*
|
|
* @return The new pose of the robot.
|
|
*/
|
|
const Pose2d& UpdateWithTime(units::second_t currentTime,
|
|
const Rotation2d& angle,
|
|
const DifferentialDriveWheelSpeeds& wheelSpeeds);
|
|
|
|
/**
|
|
* Updates the robot's position on the field using forward kinematics and
|
|
* integration of the pose over time. This method automatically calculates
|
|
* the current time to calculate period (difference between two timestamps).
|
|
* The period is used to calculate the change in distance from a velocity.
|
|
* This also takes in an angle parameter which is used instead of the
|
|
* angular rate that is calculated from forward kinematics.
|
|
*
|
|
* @param angle The angle of the robot.
|
|
* @param wheelSpeeds The current wheel speeds.
|
|
*
|
|
* @return The new pose of the robot.
|
|
*/
|
|
const Pose2d& Update(const Rotation2d& angle,
|
|
const DifferentialDriveWheelSpeeds& wheelSpeeds) {
|
|
const auto now = std::chrono::system_clock::now().time_since_epoch();
|
|
units::second_t time{now};
|
|
return UpdateWithTime(time, angle, wheelSpeeds);
|
|
}
|
|
|
|
private:
|
|
DifferentialDriveKinematics m_kinematics;
|
|
Pose2d m_pose;
|
|
|
|
units::second_t m_previousTime = -1_s;
|
|
Rotation2d m_previousAngle;
|
|
};
|
|
} // namespace frc
|