mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Now, implicit narrowing conversions are only used with wpi::Now(). This
also fixes clang-tidy warnings about C-style casts. For example:
```
== clang-tidy /__w/allwpilib/allwpilib/wpilibNewCommands/src/main/native/include/frc2/command/SwerveControllerCommand.inc ==
/__w/allwpilib/allwpilib/wpilibNewCommands/src/main/native/include/frc2/command/SwerveControllerCommand.inc:95:18: warning: C-style casts are discouraged; use static_cast/const_cast/reinterpret_cast [google-readability-casting]
auto curTime = units::second_t(m_timer.Get());
^
```
In that case at least, the cast was removed entirely since Get() already
returns a units::second_t.
101 lines
3.3 KiB
C++
101 lines
3.3 KiB
C++
// 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.
|
|
|
|
#include <frc/TimedRobot.h>
|
|
#include <frc/Timer.h>
|
|
#include <frc/XboxController.h>
|
|
#include <frc/controller/RamseteController.h>
|
|
#include <frc/filter/SlewRateLimiter.h>
|
|
#include <frc/smartdashboard/Field2d.h>
|
|
#include <frc/smartdashboard/SmartDashboard.h>
|
|
#include <frc/trajectory/TrajectoryGenerator.h>
|
|
|
|
#include "Drivetrain.h"
|
|
|
|
class Robot : public frc::TimedRobot {
|
|
public:
|
|
void AutonomousInit() override {
|
|
// Start the timer.
|
|
m_timer.Start();
|
|
|
|
// Send Field2d to SmartDashboard.
|
|
frc::SmartDashboard::PutData(&m_field);
|
|
|
|
// Reset the drivetrain's odometry to the starting pose of the trajectory.
|
|
m_drive.ResetOdometry(m_trajectory.InitialPose());
|
|
|
|
// Send our generated trajectory to Field2d.
|
|
m_field.GetObject("traj")->SetTrajectory(m_trajectory);
|
|
}
|
|
|
|
void AutonomousPeriodic() override {
|
|
// Update odometry.
|
|
m_drive.UpdateOdometry();
|
|
|
|
// Update robot position on Field2d.
|
|
m_field.SetRobotPose(m_drive.GetPose());
|
|
|
|
if (m_timer.Get() < m_trajectory.TotalTime()) {
|
|
// Get the desired pose from the trajectory.
|
|
auto desiredPose = m_trajectory.Sample(m_timer.Get());
|
|
|
|
// Get the reference chassis speeds from the Ramsete Controller.
|
|
auto refChassisSpeeds =
|
|
m_ramseteController.Calculate(m_drive.GetPose(), desiredPose);
|
|
|
|
// Set the linear and angular speeds.
|
|
m_drive.Drive(refChassisSpeeds.vx, refChassisSpeeds.omega);
|
|
} else {
|
|
m_drive.Drive(0_mps, 0_rad_per_s);
|
|
}
|
|
}
|
|
|
|
void TeleopPeriodic() override {
|
|
// Get the x speed. We are inverting this because Xbox controllers return
|
|
// negative values when we push forward.
|
|
const auto xSpeed = -m_speedLimiter.Calculate(m_controller.GetLeftY()) *
|
|
Drivetrain::kMaxSpeed;
|
|
|
|
// Get the rate of angular rotation. We are inverting this because we want a
|
|
// positive value when we pull to the left (remember, CCW is positive in
|
|
// mathematics). Xbox controllers return positive values when you pull to
|
|
// the right by default.
|
|
const auto rot = -m_rotLimiter.Calculate(m_controller.GetRightX()) *
|
|
Drivetrain::kMaxAngularSpeed;
|
|
|
|
m_drive.Drive(xSpeed, rot);
|
|
}
|
|
|
|
private:
|
|
frc::XboxController m_controller{0};
|
|
|
|
// Slew rate limiters to make joystick inputs more gentle; 1/3 sec from 0
|
|
// to 1.
|
|
frc::SlewRateLimiter<units::scalar> m_speedLimiter{3 / 1_s};
|
|
frc::SlewRateLimiter<units::scalar> m_rotLimiter{3 / 1_s};
|
|
|
|
Drivetrain m_drive;
|
|
|
|
// An example trajectory to follow.
|
|
frc::Trajectory m_trajectory = frc::TrajectoryGenerator::GenerateTrajectory(
|
|
frc::Pose2d{0_m, 0_m, 0_rad},
|
|
{frc::Translation2d{1_m, 1_m}, frc::Translation2d{2_m, -1_m}},
|
|
frc::Pose2d{3_m, 0_m, 0_rad}, frc::TrajectoryConfig(3_fps, 3_fps_sq));
|
|
|
|
// The Ramsete Controller to follow the trajectory.
|
|
frc::RamseteController m_ramseteController;
|
|
|
|
// The timer to use during the autonomous period.
|
|
frc::Timer m_timer;
|
|
|
|
// Create Field2d for robot and trajectory visualizations.
|
|
frc::Field2d m_field;
|
|
};
|
|
|
|
#ifndef RUNNING_FRC_TESTS
|
|
int main() {
|
|
return frc::StartRobot<Robot>();
|
|
}
|
|
#endif
|