2019-09-08 00:11:49 -04:00
|
|
|
/*----------------------------------------------------------------------------*/
|
2020-01-23 21:07:38 -05:00
|
|
|
/* Copyright (c) 2019-2020 FIRST. All Rights Reserved. */
|
2019-09-08 00:11:49 -04:00
|
|
|
/* 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 <frc/AnalogGyro.h>
|
|
|
|
|
#include <frc/Encoder.h>
|
2019-11-20 00:48:22 -05:00
|
|
|
#include <frc/PWMVictorSPX.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>
|
|
|
|
|
#include <wpi/math>
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Represents a mecanum drive style drivetrain.
|
|
|
|
|
*/
|
|
|
|
|
class Drivetrain {
|
|
|
|
|
public:
|
|
|
|
|
Drivetrain() { m_gyro.Reset(); }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get the robot angle as a Rotation2d
|
|
|
|
|
*/
|
|
|
|
|
frc::Rotation2d GetAngle() const {
|
|
|
|
|
// Negating the angle because WPILib Gyros are CW positive.
|
|
|
|
|
return frc::Rotation2d(units::degree_t(-m_gyro.GetAngle()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
frc::MecanumDriveWheelSpeeds GetCurrentState() const;
|
|
|
|
|
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,
|
|
|
|
|
bool fieldRelative);
|
|
|
|
|
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{
|
|
|
|
|
wpi::math::pi}; // 1/2 rotation per second
|
|
|
|
|
|
|
|
|
|
private:
|
2019-11-20 00:48:22 -05:00
|
|
|
frc::PWMVictorSPX m_frontLeftMotor{1};
|
|
|
|
|
frc::PWMVictorSPX m_frontRightMotor{2};
|
|
|
|
|
frc::PWMVictorSPX m_backLeftMotor{3};
|
|
|
|
|
frc::PWMVictorSPX 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};
|
|
|
|
|
|
|
|
|
|
frc2::PIDController m_frontLeftPIDController{1.0, 0.0, 0.0};
|
|
|
|
|
frc2::PIDController m_frontRightPIDController{1.0, 0.0, 0.0};
|
|
|
|
|
frc2::PIDController m_backLeftPIDController{1.0, 0.0, 0.0};
|
|
|
|
|
frc2::PIDController m_backRightPIDController{1.0, 0.0, 0.0};
|
|
|
|
|
|
|
|
|
|
frc::AnalogGyro m_gyro{0};
|
|
|
|
|
|
|
|
|
|
frc::MecanumDriveKinematics m_kinematics{
|
|
|
|
|
m_frontLeftLocation, m_frontRightLocation, m_backLeftLocation,
|
|
|
|
|
m_backRightLocation};
|
|
|
|
|
|
2019-11-15 20:34:10 -05:00
|
|
|
frc::MecanumDriveOdometry m_odometry{m_kinematics, GetAngle()};
|
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
|
|
|
};
|