Merged
Conversation
* code for new intake with wrist still need to write commands for it though * actually create hardware objects for the new intake * update values from hardware in the software interface
* field oreinted scoring written, builds, untested * field-oriented scoring tested, works * left and right bumpers for pickup positions so we can pickup on both sides of the robot
* code for new intake with wrist still need to write commands for it though * actually create hardware objects for the new intake * update values from hardware in the software interface * wrote commands to move the wrist to a certain position, either just straight to a position or incrementing it * bind some of the wrist commands we need * wrist tilt encoder on shuffleboard * clean up the intake commands and add some more OKC_CALL stuff * add an offset to the tilt encoder * fix intake parameters * more okc checks
…otics/FRC-2023 into scoring-integration
…spot and fix the setpoints
…otics/FRC-2023 into scoring-integration
danielbrownmsm
requested changes
Mar 30, 2023
Collaborator
danielbrownmsm
left a comment
There was a problem hiding this comment.
I'll go ahead and make these changes, but I'm leaving this review so Sai can see how the process works
build.gradle
Outdated
|
|
||
| // Set this to true to enable desktop support. | ||
| def includeDesktopSupport = true | ||
| def includeDesktopSupport = false |
Collaborator
There was a problem hiding this comment.
need to change back to true
|
|
||
| // set output | ||
| this->interface_->arm_lift_power = this->arm_pid_->Calculate(this->state_.rotation); | ||
| double ff = TeamOKC::sign(this->desired_state_.rotation) * arm_kF_ * this->desired_state_.rotation * this->desired_state_.rotation; |
Collaborator
There was a problem hiding this comment.
add a comment about what this is actually doing
src/main/deploy/parameters.toml
Outdated
|
|
||
| [arm.negative_pickup] | ||
| extend_setpoint = 20.0 | ||
| extend_setpoint = 50.0 |
Collaborator
There was a problem hiding this comment.
why is there another extend setpoint here?
Contributor
Author
|
ok |
danielbrownmsm
approved these changes
Apr 4, 2023
Collaborator
danielbrownmsm
left a comment
There was a problem hiding this comment.
lgtm, and then we can merge the feat/GKC branch
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Added feedforward to arm control.
Fixes #52