2020-12-26 14:12:05 -08:00
|
|
|
// Copyright (c) FIRST and other WPILib contributors.
|
|
|
|
|
// Open Source Software; you can modify and/or share it under the terms of
|
|
|
|
|
// the WPILib BSD license file in the root directory of this project.
|
2019-09-08 00:11:49 -04:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2022-10-15 16:33:14 -07:00
|
|
|
#include <numbers>
|
|
|
|
|
|
2025-11-07 19:56:21 -05:00
|
|
|
#include "wpi/hardware/imu/OnboardIMU.hpp"
|
|
|
|
|
#include "wpi/math/geometry/Translation2d.hpp"
|
|
|
|
|
#include "wpi/math/kinematics/SwerveDriveKinematics.hpp"
|
|
|
|
|
#include "wpi/math/kinematics/SwerveDriveOdometry.hpp"
|
2019-09-08 00:11:49 -04:00
|
|
|
|
2025-11-07 19:56:21 -05:00
|
|
|
#include "SwerveModule.hpp"
|
2019-09-08 00:11:49 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Represents a swerve drive style drivetrain.
|
|
|
|
|
*/
|
|
|
|
|
class Drivetrain {
|
|
|
|
|
public:
|
2025-10-10 15:44:39 -04:00
|
|
|
Drivetrain() { m_imu.ResetYaw(); }
|
2019-09-08 00:11:49 -04:00
|
|
|
|
|
|
|
|
void Drive(units::meters_per_second_t xSpeed,
|
|
|
|
|
units::meters_per_second_t ySpeed, units::radians_per_second_t rot,
|
2023-07-18 21:19:55 -07:00
|
|
|
bool fieldRelative, units::second_t period);
|
2019-09-08 00:11:49 -04:00
|
|
|
void UpdateOdometry();
|
|
|
|
|
|
|
|
|
|
static constexpr units::meters_per_second_t kMaxSpeed =
|
|
|
|
|
3.0_mps; // 3 meters per second
|
|
|
|
|
static constexpr units::radians_per_second_t kMaxAngularSpeed{
|
2022-10-15 16:33:14 -07:00
|
|
|
std::numbers::pi}; // 1/2 rotation per second
|
2019-09-08 00:11:49 -04:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
frc::Translation2d m_frontLeftLocation{+0.381_m, +0.381_m};
|
|
|
|
|
frc::Translation2d m_frontRightLocation{+0.381_m, -0.381_m};
|
|
|
|
|
frc::Translation2d m_backLeftLocation{-0.381_m, +0.381_m};
|
|
|
|
|
frc::Translation2d m_backRightLocation{-0.381_m, -0.381_m};
|
|
|
|
|
|
2021-05-15 14:15:18 -07:00
|
|
|
SwerveModule m_frontLeft{1, 2, 0, 1, 2, 3};
|
2021-12-07 05:08:34 +00:00
|
|
|
SwerveModule m_frontRight{3, 4, 4, 5, 6, 7};
|
2021-05-15 14:15:18 -07:00
|
|
|
SwerveModule m_backLeft{5, 6, 8, 9, 10, 11};
|
|
|
|
|
SwerveModule m_backRight{7, 8, 12, 13, 14, 15};
|
2019-09-08 00:11:49 -04:00
|
|
|
|
2025-10-10 15:44:39 -04:00
|
|
|
frc::OnboardIMU m_imu{frc::OnboardIMU::kFlat};
|
2019-09-08 00:11:49 -04:00
|
|
|
|
|
|
|
|
frc::SwerveDriveKinematics<4> m_kinematics{
|
|
|
|
|
m_frontLeftLocation, m_frontRightLocation, m_backLeftLocation,
|
|
|
|
|
m_backRightLocation};
|
|
|
|
|
|
2022-10-25 15:28:36 -04:00
|
|
|
frc::SwerveDriveOdometry<4> m_odometry{
|
|
|
|
|
m_kinematics,
|
2025-10-10 15:44:39 -04:00
|
|
|
m_imu.GetRotation2d(),
|
2022-10-25 15:28:36 -04:00
|
|
|
{m_frontLeft.GetPosition(), m_frontRight.GetPosition(),
|
|
|
|
|
m_backLeft.GetPosition(), m_backRight.GetPosition()}};
|
2019-09-08 00:11:49 -04:00
|
|
|
};
|