Skip to content

Commit

Permalink
Post-comp commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stsmith306 committed Nov 13, 2023
1 parent 6086798 commit 8dad030
Show file tree
Hide file tree
Showing 9 changed files with 70 additions and 19 deletions.
12 changes: 8 additions & 4 deletions src/main/cpp/RobotContainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,10 @@ RobotContainer::RobotContainer() {
// Configure the button bindings
ConfigureButtonBindings();

m_chooser.SetDefaultOption(kBalance, kBalance);
m_chooser.AddOption(kLeave, kLeave);
m_chooser.AddOption(kPlaceOnly, kPlaceOnly);
m_chooser.SetDefaultOption( kBalance, kBalance );
m_chooser.AddOption( kLeave, kLeave );
m_chooser.AddOption( kPlaceOnly, kPlaceOnly );
m_chooser.AddOption( kDoNothing, kDoNothing );
frc::SmartDashboard::PutData("Auto Modes", &m_chooser);
}

Expand Down Expand Up @@ -89,7 +90,7 @@ void RobotContainer::ConfigureButtonBindings() {

m_operatorController.Y().OnTrue(ArmSet(&m_arm, physical::kArmUpperPlaceHeight, physical::kWristUpperPlaceHeight, 0.3, true).ToPtr());

m_operatorController.A().OnTrue(ArmSet(&m_arm, -90_deg, 14_deg, 0.3, true).ToPtr());
m_operatorController.A().OnTrue(ArmSet(&m_arm, -90_deg, 12_deg, 0.3, true).ToPtr());

m_operatorController.B().OnTrue(PlaceMid( &m_arm, &m_grabber ).ToPtr() );

Expand All @@ -115,6 +116,9 @@ frc2::Command* RobotContainer::GetAutonomousCommand() {
else if (m_autoSelected == kPlaceOnly) {
m_autoCommand = new PlaceOnlyAuto(&m_drive, &m_arm, &m_grabber);
}
else if ( m_autoSelected == kDoNothing ) {
m_autoCommand = new DoNothingAuto( &m_drive, &m_arm, &m_grabber );
}

return m_autoCommand;
}
Expand Down
23 changes: 23 additions & 0 deletions src/main/cpp/commands/autonomous/DoNothingAuto.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// 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 "commands/autonomous/DoNothingAuto.h"

#include <frc2/command/WaitCommand.h>
#include <frc2/command/InstantCommand.h>
#include <frc2/command/ParallelCommandGroup.h>

// NOTE: Consider using this command inline, rather than writing a subclass.
// For more information, see:
// https://docs.wpilib.org/en/stable/docs/software/commandbased/convenience-features.html
DoNothingAuto::DoNothingAuto( Drivetrain *drive, ArmSubsystem *arm, GrabberSubsystem *grabber ) {
// Add your commands here, e.g.
// AddCommands(FooCommand{}, BarCommand{});
AddCommands(
frc2::WaitCommand(0.5_s),
frc2::InstantCommand([this, arm] {arm->ArmOn(-0.75, 0.5); }, { arm }),
frc2::WaitCommand(0.4_s),
frc2::InstantCommand([this, arm] {arm->ArmOn(0.0, 0.0); }, { arm })
);
}
2 changes: 1 addition & 1 deletion src/main/cpp/commands/autonomous/PlaceAtPose.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ PlaceAtPose::PlaceAtPose( Drivetrain *drive, ArmSubsystem *arm, GrabberSubsystem
frc2::InstantCommand( [this, grabber] { grabber->Spin( -0.35 ) ;}, { grabber } ),
frc2::WaitCommand( 0.25_s ),
frc2::InstantCommand( [this, grabber] { grabber->Spin( 0.0 ) ;}, { grabber } ),
ArmSet(arm, -118_deg, 61_deg, 0.3)
ArmSet(arm, -118_deg, 50_deg, 0.3)
);
}
12 changes: 4 additions & 8 deletions src/main/cpp/subsystems/ArmSubsystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ArmSubsystem::ArmSubsystem() {
m_wrist.EnableVoltageCompensation(12);

m_wristEncoder.ConfigSensorDirection( true );
m_wristEncoder.SetPosition( m_wristEncoder.GetAbsolutePosition() * physical::kWristEncoderGearRatio - physical::kWristAbsoluteOffset.value() );
m_wristEncoder.SetPosition( m_wristEncoder.GetAbsolutePosition() - physical::kWristAbsoluteOffset.value() );

armAngle = GetArmAngle();
wristAngle = GetWristAngle();
Expand Down Expand Up @@ -50,19 +50,15 @@ void ArmSubsystem::Periodic() {
return;
}

m_armEncoder.SetPositionOffset();
armAngle = GetArmAngle();
wristAngle = GetWristAngle();
if (armAngle > 180_deg) {
m_armEncoder.SetPositionNegative();
}

// if (wristAngle > 180_deg) {
// m_wristEncoder.SetPositionNegative();
// }


armAngle = GetArmAngle();
wristAngle = GetWristAngle();

// Holds arm in position after enabled
if ( disabled && frc::DriverStation::IsEnabled() ) {
m_wristSetpoint.position = wristAngle;
Expand Down Expand Up @@ -219,7 +215,7 @@ void ArmSubsystem::ArmData() {
frc::SmartDashboard::PutNumber("Current Wrist Angle", wristAngle.value());
frc::SmartDashboard::PutNumber("Current Wrist Velocity", m_enc.GetVelocity() * 0.0129 * 6.0);
frc::SmartDashboard::PutNumber("WristPosition", GetWristAngle().value());
frc::SmartDashboard::PutNumber("WristRawPosition", m_wristEncoder.GetAbsolutePosition() * physical::kWristEncoderGearRatio);
frc::SmartDashboard::PutNumber("WristRawPosition", m_wristEncoder.GetAbsolutePosition());

// DataLogger::GetInstance().Send( "Arm/Left Arm Current", m_leftArm.GetOutputCurrent() );
// DataLogger::GetInstance().Send( "Arm/Right Arm Current", m_rightArm.GetOutputCurrent() );
Expand Down
1 change: 1 addition & 0 deletions src/main/cpp/subsystems/Drivetrain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ void Drivetrain::DriveTrajectory( frc::Trajectory::State trajectoryState, const
}

void Drivetrain::StopDrive( ) {
ArcadeDrive( 0, 0, 0 );
m_frontLeft.StopMotors( );
m_backLeft.StopMotors( );
m_frontRight.StopMotors( );
Expand Down
10 changes: 8 additions & 2 deletions src/main/include/AbsoluteEncoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,14 @@ class AbsoluteEncoder{
return m_absoluteEncoder.GetAbsolutePosition();
}

void SetPositionNegative(void) {
position_offset = 360.0_deg;
void SetPositionOffset(void) {
while (GetCountingPosition() > 180_deg) {
position_offset += 360_deg;
}
while ( GetCountingPosition() < -180_deg ) {
position_offset -= 360_deg;
}

}

bool IsConnected( void ) {
Expand Down
8 changes: 4 additions & 4 deletions src/main/include/Constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ namespace physical {
constexpr double kTurnGearRatio = 12.8;

// Gear ratio between the absolute encoder for the wrist and the wrist
constexpr double kWristEncoderGearRatio = 24.0 / 34.0;
constexpr double kWristEncoderGearRatio = 26.0 / 34.0;

// The width of the drive base from the center of one module to another adjacent one.
constexpr units::meter_t kDriveBaseWidth = 23.25_in;
Expand All @@ -92,15 +92,15 @@ namespace physical {
// Absolute encoder offset for the arm encoder
constexpr double kArmAbsoluteOffset = 0.495;

constexpr units::degree_t kWristAbsoluteOffset = -53.7_deg;
constexpr units::degree_t kWristAbsoluteOffset = -70.0_deg;

// IsFinished condition for arm
constexpr units::degree_t kArmAngleError = 3_deg;

constexpr units::inch_t kLimelightXAxisOffset = 325.61_in;
constexpr units::inch_t kLimelightYAxisOffset = 157.8_in;

constexpr units::inch_t kPlaceDistance = 11_in;
constexpr units::inch_t kPlaceDistance = 9_in;

constexpr units::degree_t kArmLowerPlaceHeight = -60_deg;
constexpr units::degree_t kWristLowerPlaceHeight = 20_deg;
Expand All @@ -111,7 +111,7 @@ namespace physical {
constexpr units::degree_t kArmCubeMidPlaceHeight = -30_deg;
constexpr units::degree_t kWristCubeMidPlaceHeight = 0_deg;

constexpr units::degree_t kArmSubstationMidPlaceHeight = 63_deg;
constexpr units::degree_t kArmSubstationMidPlaceHeight = 53_deg;
constexpr units::degree_t kWristSubstationMidPlaceHeight = -175_deg;
constexpr double kMidDelayProportion = 0.3;

Expand Down
2 changes: 2 additions & 0 deletions src/main/include/RobotContainer.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include "commands/autonomous/PlaceOnlyAuto.h"
#include "commands/autonomous/BalanceAuto.h"
#include "commands/autonomous/LeaveAuto.h"
#include "commands/autonomous/DoNothingAuto.h"

#include "ControllerAxis.h"

Expand Down Expand Up @@ -56,6 +57,7 @@ class RobotContainer {
const std::string kBalance = "Place Cube and Balance";
const std::string kLeave = "Place Cube and Leave";
const std::string kPlaceOnly = "Just Place Cube";
const std::string kDoNothing = "Do Nothing";
std::string m_autoSelected;

frc::PS4Controller m_driverController{ 0 };
Expand Down
19 changes: 19 additions & 0 deletions src/main/include/commands/autonomous/DoNothingAuto.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// 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.

#pragma once

#include <frc2/command/CommandHelper.h>
#include <frc2/command/SequentialCommandGroup.h>

#include "subsystems/Drivetrain.h"
#include "subsystems/ArmSubsystem.h"
#include "subsystems/GrabberSubsystem.h"

class DoNothingAuto
: public frc2::CommandHelper<frc2::SequentialCommandGroup,
DoNothingAuto> {
public:
DoNothingAuto( Drivetrain *drive, ArmSubsystem *arm, GrabberSubsystem *grabber );
};

0 comments on commit 8dad030

Please sign in to comment.