2019-09-08 00:11:49 -04:00
|
|
|
/*----------------------------------------------------------------------------*/
|
|
|
|
|
/* 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 <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>
|
|
|
|
|
#include <frc/controller/ProfiledPIDController.h>
|
|
|
|
|
#include <frc/kinematics/SwerveModuleState.h>
|
|
|
|
|
#include <wpi/math>
|
|
|
|
|
|
|
|
|
|
class SwerveModule {
|
|
|
|
|
public:
|
|
|
|
|
SwerveModule(int driveMotorChannel, int turningMotorChannel);
|
|
|
|
|
frc::SwerveModuleState GetState() const;
|
|
|
|
|
void SetDesiredState(const frc::SwerveModuleState& state);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
static constexpr double kWheelRadius = 0.0508;
|
|
|
|
|
static constexpr int kEncoderResolution = 4096;
|
|
|
|
|
|
|
|
|
|
// We have to use meters here instead of radians because of the fact that
|
|
|
|
|
// ProfiledPIDController's constraints only take in meters per second and
|
|
|
|
|
// meters per second squared.
|
|
|
|
|
|
|
|
|
|
static constexpr units::meters_per_second_t kModuleMaxAngularVelocity =
|
|
|
|
|
units::meters_per_second_t(wpi::math::pi); // radians per second
|
|
|
|
|
static constexpr units::meters_per_second_squared_t
|
|
|
|
|
kModuleMaxAngularAcceleration = units::meters_per_second_squared_t(
|
|
|
|
|
wpi::math::pi * 2.0); // radians per second squared
|
|
|
|
|
|
2019-11-20 00:48:22 -05:00
|
|
|
frc::PWMVictorSPX m_driveMotor;
|
|
|
|
|
frc::PWMVictorSPX m_turningMotor;
|
2019-09-08 00:11:49 -04:00
|
|
|
|
|
|
|
|
frc::Encoder m_driveEncoder{0, 1};
|
2019-11-03 12:08:05 -05:00
|
|
|
frc::Encoder m_turningEncoder{2, 3};
|
2019-09-08 00:11:49 -04:00
|
|
|
|
|
|
|
|
frc2::PIDController m_drivePIDController{1.0, 0, 0};
|
|
|
|
|
frc::ProfiledPIDController m_turningPIDController{
|
|
|
|
|
1.0,
|
|
|
|
|
0.0,
|
|
|
|
|
0.0,
|
|
|
|
|
{kModuleMaxAngularVelocity, kModuleMaxAngularAcceleration}};
|
|
|
|
|
};
|