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.
|
2020-11-28 17:35:35 -05:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <frc/AnalogGyro.h>
|
|
|
|
|
#include <frc/estimator/SwerveDrivePoseEstimator.h>
|
|
|
|
|
#include <frc/geometry/Translation2d.h>
|
|
|
|
|
#include <frc/kinematics/SwerveDriveKinematics.h>
|
|
|
|
|
#include <frc/kinematics/SwerveDriveOdometry.h>
|
2021-05-26 00:09:36 -07:00
|
|
|
#include <wpi/numbers>
|
2020-11-28 17:35:35 -05:00
|
|
|
|
|
|
|
|
#include "SwerveModule.h"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Represents a swerve drive style drivetrain.
|
|
|
|
|
*/
|
|
|
|
|
class Drivetrain {
|
|
|
|
|
public:
|
|
|
|
|
Drivetrain() { m_gyro.Reset(); }
|
|
|
|
|
|
|
|
|
|
void Drive(units::meters_per_second_t xSpeed,
|
|
|
|
|
units::meters_per_second_t ySpeed, units::radians_per_second_t rot,
|
|
|
|
|
bool fieldRelative);
|
|
|
|
|
void UpdateOdometry();
|
|
|
|
|
|
|
|
|
|
static constexpr auto kMaxSpeed = 3.0_mps; // 3 meters per second
|
|
|
|
|
static constexpr units::radians_per_second_t kMaxAngularSpeed{
|
2021-05-26 00:09:36 -07:00
|
|
|
wpi::numbers::pi}; // 1/2 rotation per second
|
2020-11-28 17:35:35 -05: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 21:39:00 -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 21:39:00 -07:00
|
|
|
SwerveModule m_backLeft{5, 6, 8, 9, 10, 11};
|
|
|
|
|
SwerveModule m_backRight{7, 8, 12, 13, 14, 15};
|
2020-11-28 17:35:35 -05:00
|
|
|
|
|
|
|
|
frc::AnalogGyro m_gyro{0};
|
|
|
|
|
|
|
|
|
|
frc::SwerveDriveKinematics<4> m_kinematics{
|
|
|
|
|
m_frontLeftLocation, m_frontRightLocation, m_backLeftLocation,
|
|
|
|
|
m_backRightLocation};
|
|
|
|
|
|
|
|
|
|
// Gains are for example purposes only - must be determined for your own
|
|
|
|
|
// robot!
|
|
|
|
|
frc::SwerveDrivePoseEstimator<4> m_poseEstimator{
|
2022-08-17 13:42:36 -07:00
|
|
|
frc::Rotation2d{}, frc::Pose2d{}, m_kinematics,
|
2020-11-28 17:35:35 -05:00
|
|
|
{0.1, 0.1, 0.1}, {0.05}, {0.1, 0.1, 0.1}};
|
|
|
|
|
};
|