-
Notifications
You must be signed in to change notification settings - Fork 0
Climber devel #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
a0976998776-gif
wants to merge
8
commits into
main
Choose a base branch
from
climber-devel
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
39c67e7
Climber-develope
a0976998776-gif 1b5391e
climber-moveFile
a0976998776-gif efc4735
climber-moveFile
a0976998776-gif b55e080
climber-fix
a0976998776-gif d0235ee
climber-fix
a0976998776-gif 02f21ec
intake-save
a0976998776-gif 6485ca4
climber-fix
a0976998776-gif 6b0c3b3
climber-update
a0976998776-gif File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| package frc.robot.commands; | ||
|
|
||
| import edu.wpi.first.wpilibj.smartdashboard.SmartDashboard; | ||
| import edu.wpi.first.wpilibj2.command.Command; | ||
| import frc.robot.subsystems.climber.ClimberSubsystem; | ||
|
|
||
| public class ClimberCommand extends Command{ | ||
| private final ClimberSubsystem climberSubsystem; | ||
| private final double climberTarget; | ||
|
|
||
| public ClimberCommand(ClimberSubsystem climberSubsystem, double climberPosition) { | ||
| this.climberSubsystem = climberSubsystem; | ||
| this.climberTarget = climberPosition; | ||
| } | ||
| public void initialize() { | ||
|
|
||
| climberSubsystem.setClimberTargetPosition(climberTarget); | ||
| } | ||
| public void execute() { | ||
| climberSubsystem.runClimber(); | ||
| SmartDashboard.putNumber("climberMotor", climberSubsystem.getClimberPosition()); | ||
| SmartDashboard.putNumber("climberTarget", climberTarget); | ||
| } | ||
| public void end(boolean interrupted) { | ||
| climberSubsystem.resetClimberPosition(); | ||
| } | ||
| } | ||
13 changes: 13 additions & 0 deletions
13
src/main/java/frc/robot/subsystems/climber/ClimberConstants.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| package frc.robot.subsystems.climber; | ||
|
|
||
| import com.ctre.phoenix6.CANBus; | ||
|
|
||
| public class ClimberConstants { | ||
| public static final CANBus climberBus = new CANBus("GTX7130"); | ||
| public static final int leftMotorID = 20; | ||
| public static final int rightMotorID = 21; | ||
|
|
||
| public static final double climberKP = 0.1; | ||
| public static final double climberKI = 0.0; | ||
| public static final double climberKD = 0.0; | ||
| } |
51 changes: 51 additions & 0 deletions
51
src/main/java/frc/robot/subsystems/climber/ClimberSubsystem.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| package frc.robot.subsystems.climber; | ||
|
|
||
| import com.ctre.phoenix6.CANBus; | ||
| import com.ctre.phoenix6.configs.FeedbackConfigs; | ||
| import com.ctre.phoenix6.configs.MotorOutputConfigs; | ||
| import com.ctre.phoenix6.configs.TalonFXConfiguration; | ||
| import com.ctre.phoenix6.controls.Follower; | ||
| import com.ctre.phoenix6.hardware.TalonFX; | ||
| import com.ctre.phoenix6.signals.InvertedValue; | ||
| import com.ctre.phoenix6.signals.MotorAlignmentValue; | ||
|
|
||
| import edu.wpi.first.math.controller.PIDController; | ||
| import frc.robot.subsystems.climber.ClimberConstants; | ||
|
|
||
| public class ClimberSubsystem { | ||
| private TalonFX leftMotor = new TalonFX(ClimberConstants.leftMotorID,ClimberConstants.climberBus); | ||
| private TalonFX rightMotor = new TalonFX(ClimberConstants.rightMotorID,ClimberConstants.climberBus); | ||
|
|
||
| private PIDController climberPID = new PIDController(ClimberConstants.climberKP,ClimberConstants.climberKI, ClimberConstants.climberKD); | ||
|
|
||
| public ClimberSubsystem() { | ||
| TalonFXConfiguration leftConfiguration = new TalonFXConfiguration(); | ||
| TalonFXConfiguration rightConfiguration = new TalonFXConfiguration(); | ||
| leftConfiguration.Feedback.withSensorToMechanismRatio(12); | ||
| rightConfiguration.Feedback.withSensorToMechanismRatio(12); | ||
|
|
||
| MotorOutputConfigs leftConfigs = new MotorOutputConfigs(); | ||
| MotorOutputConfigs rightConfigs = new MotorOutputConfigs(); | ||
| leftConfigs.Inverted = InvertedValue.CounterClockwise_Positive; | ||
| rightConfigs.Inverted = InvertedValue.Clockwise_Positive; | ||
| leftMotor.setControl(new Follower(ClimberConstants.rightMotorID , MotorAlignmentValue.Aligned)); | ||
| rightMotor.setPosition(0); | ||
| } | ||
|
|
||
| public double getClimberPosition() { | ||
| return (leftMotor.getPosition().getValueAsDouble()+rightMotor.getPosition().getValueAsDouble())/2; | ||
| } | ||
|
|
||
| public void resetClimberPosition() { | ||
|
wjxc-workspace marked this conversation as resolved.
|
||
| rightMotor.setPosition(0); | ||
| } | ||
|
|
||
| public void setClimberTargetPosition(double position) { | ||
| climberPID.setSetpoint(position); | ||
| } | ||
|
|
||
| public void runClimber() { | ||
| leftMotor.setVoltage(climberPID.calculate((leftMotor.getPosition().getValueAsDouble() | ||
| + rightMotor.getPosition().getValueAsDouble())/2)); | ||
| } | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.