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
|
|
|
|
|
|
|
|
|
|
#include <frc/Encoder.h>
|
|
|
|
|
#include <frc/controller/PIDController.h>
|
|
|
|
|
#include <frc/controller/ProfiledPIDController.h>
|
2020-01-23 21:07:38 -05:00
|
|
|
#include <frc/controller/SimpleMotorFeedforward.h>
|
2019-09-08 00:11:49 -04:00
|
|
|
#include <frc/kinematics/SwerveModuleState.h>
|
2021-04-17 11:27:16 -07:00
|
|
|
#include <frc/motorcontrol/PWMSparkMax.h>
|
2020-06-29 22:25:09 -07:00
|
|
|
#include <units/angular_velocity.h>
|
|
|
|
|
#include <units/time.h>
|
|
|
|
|
#include <units/velocity.h>
|
|
|
|
|
#include <units/voltage.h>
|
2019-09-08 00:11:49 -04:00
|
|
|
#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;
|
|
|
|
|
|
2019-11-20 23:11:46 -05:00
|
|
|
static constexpr auto kModuleMaxAngularVelocity =
|
|
|
|
|
wpi::math::pi * 1_rad_per_s; // radians per second
|
|
|
|
|
static constexpr auto kModuleMaxAngularAcceleration =
|
|
|
|
|
wpi::math::pi * 2_rad_per_s / 1_s; // radians per second^2
|
2019-09-08 00:11:49 -04:00
|
|
|
|
2021-02-13 01:14:56 -05:00
|
|
|
frc::PWMSparkMax m_driveMotor;
|
|
|
|
|
frc::PWMSparkMax 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};
|
2019-11-20 23:11:46 -05:00
|
|
|
frc::ProfiledPIDController<units::radians> m_turningPIDController{
|
2019-09-08 00:11:49 -04:00
|
|
|
1.0,
|
|
|
|
|
0.0,
|
|
|
|
|
0.0,
|
|
|
|
|
{kModuleMaxAngularVelocity, kModuleMaxAngularAcceleration}};
|
2020-01-23 21:07:38 -05:00
|
|
|
|
2020-06-29 22:25:09 -07:00
|
|
|
frc::SimpleMotorFeedforward<units::meters> m_driveFeedforward{1_V,
|
|
|
|
|
3_V / 1_mps};
|
2020-01-23 21:07:38 -05:00
|
|
|
frc::SimpleMotorFeedforward<units::radians> m_turnFeedforward{
|
|
|
|
|
1_V, 0.5_V / 1_rad_per_s};
|
2019-09-08 00:11:49 -04:00
|
|
|
};
|