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>
|
|
|
|
|
|
2019-09-08 00:11:49 -04:00
|
|
|
#include <frc/Encoder.h>
|
2025-10-10 15:44:39 -04:00
|
|
|
#include <frc/OnboardIMU.h>
|
2019-09-08 00:11:49 -04:00
|
|
|
#include <frc/controller/PIDController.h>
|
2020-01-23 21:07:38 -05:00
|
|
|
#include <frc/controller/SimpleMotorFeedforward.h>
|
2019-09-08 00:11:49 -04:00
|
|
|
#include <frc/geometry/Translation2d.h>
|
|
|
|
|
#include <frc/kinematics/MecanumDriveKinematics.h>
|
|
|
|
|
#include <frc/kinematics/MecanumDriveOdometry.h>
|
|
|
|
|
#include <frc/kinematics/MecanumDriveWheelSpeeds.h>
|
2021-04-17 11:27:16 -07:00
|
|
|
#include <frc/motorcontrol/PWMSparkMax.h>
|
2019-09-08 00:11:49 -04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Represents a mecanum drive style drivetrain.
|
|
|
|
|
*/
|
|
|
|
|
class Drivetrain {
|
|
|
|
|
public:
|
2021-12-26 19:25:26 -08:00
|
|
|
Drivetrain() {
|
2025-10-10 15:44:39 -04:00
|
|
|
m_imu.ResetYaw();
|
2021-12-26 19:25:26 -08:00
|
|
|
// We need to invert one side of the drivetrain so that positive voltages
|
|
|
|
|
// result in both sides moving forward. Depending on how your robot's
|
|
|
|
|
// gearbox is constructed, you might have to invert the left side instead.
|
|
|
|
|
m_frontRightMotor.SetInverted(true);
|
|
|
|
|
m_backRightMotor.SetInverted(true);
|
|
|
|
|
}
|
2019-09-08 00:11:49 -04:00
|
|
|
|
|
|
|
|
frc::MecanumDriveWheelSpeeds GetCurrentState() const;
|
2022-10-25 15:28:59 -04:00
|
|
|
frc::MecanumDriveWheelPositions GetCurrentWheelDistances() const;
|
2019-09-08 00:11:49 -04:00
|
|
|
void SetSpeeds(const frc::MecanumDriveWheelSpeeds& wheelSpeeds);
|
|
|
|
|
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:
|
2021-02-13 01:14:56 -05:00
|
|
|
frc::PWMSparkMax m_frontLeftMotor{1};
|
|
|
|
|
frc::PWMSparkMax m_frontRightMotor{2};
|
|
|
|
|
frc::PWMSparkMax m_backLeftMotor{3};
|
|
|
|
|
frc::PWMSparkMax m_backRightMotor{4};
|
2019-09-08 00:11:49 -04:00
|
|
|
|
|
|
|
|
frc::Encoder m_frontLeftEncoder{0, 1};
|
2019-11-03 12:08:05 -05:00
|
|
|
frc::Encoder m_frontRightEncoder{2, 3};
|
|
|
|
|
frc::Encoder m_backLeftEncoder{4, 5};
|
|
|
|
|
frc::Encoder m_backRightEncoder{6, 7};
|
2019-09-08 00:11:49 -04:00
|
|
|
|
|
|
|
|
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};
|
|
|
|
|
|
2023-09-15 19:57:31 -07:00
|
|
|
frc::PIDController m_frontLeftPIDController{1.0, 0.0, 0.0};
|
|
|
|
|
frc::PIDController m_frontRightPIDController{1.0, 0.0, 0.0};
|
|
|
|
|
frc::PIDController m_backLeftPIDController{1.0, 0.0, 0.0};
|
|
|
|
|
frc::PIDController m_backRightPIDController{1.0, 0.0, 0.0};
|
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::MecanumDriveKinematics m_kinematics{
|
|
|
|
|
m_frontLeftLocation, m_frontRightLocation, m_backLeftLocation,
|
|
|
|
|
m_backRightLocation};
|
|
|
|
|
|
2025-10-10 15:44:39 -04:00
|
|
|
frc::MecanumDriveOdometry m_odometry{m_kinematics, m_imu.GetRotation2d(),
|
2022-10-25 15:28:59 -04:00
|
|
|
GetCurrentWheelDistances()};
|
2020-01-23 21:07:38 -05:00
|
|
|
|
|
|
|
|
// Gains are for example purposes only - must be determined for your own
|
|
|
|
|
// robot!
|
|
|
|
|
frc::SimpleMotorFeedforward<units::meters> m_feedforward{1_V, 3_V / 1_mps};
|
2019-09-08 00:11:49 -04:00
|
|
|
};
|