-
Notifications
You must be signed in to change notification settings - Fork 0
Drive holdheading encoder pid #34
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
ashergottlieb
wants to merge
36
commits into
master
Choose a base branch
from
drive-holdheading-encoder-pid
base: master
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
36 commits
Select commit
Hold shift + click to select a range
4f604b1
initial commit
lydiaxing d93f584
working??? I want to sleep
camilo86 03db5b6
merged with week 0
lydiaxing 880a5ae
only bug need to press b to start driving
camilo86 2f0183b
pressed ctrl-alt-l
camilo86 aa27b90
dt auto
f5bf989
auto
camilo86 7a17711
updated framework
camilo86 3a783a8
merged week0 into
9265b9c
switched to 1 second auto
NUTRONSDS c95192f
updated to add drive distance auto
NUTRONSDS a521b69
Added drive hold heading command and changed holdHeading to
Brinbri e0117d8
Updated to latest commit of week0-auto Framework and added drivetele …
NUTRONSDS 3680227
updated some stuff
NUTRONSDS 1a9574f
doing stuff on Escape Velocity
NUTRONSDS e251556
updated framework
NUTRONSDS 4db3495
updated to have better interfaces
NUTRONSDS 502898b
reverted RobotMap
NUTRONSDS 4091e14
added turn to angle
ace0949
updated framework
c34b149
with new framework version
NUTRONSDS 25d175f
reverted robotmap
NUTRONSDS 2d60401
working distance
NUTRONSDS e2f2b41
fixed turn
NUTRONSDS 8c23e66
some testing
NUTRONSDS 879ddcf
working
NUTRONSDS 2648765
updated to newest week0-auto
7b6302b
merged master into week0-auto
1270283
updated framework submodule, fixed checkstyle warnings
b359013
test reimplementation
0529ab8
working encoder and gyro pid
NUTRONSDS a8b757b
merged master into drive-holdheading-encoder-pid
0d519d8
removed duplicate method, added javadoc, added auto
e547039
style and javadocs
cd51c5c
Merge branch 'master' into drive-holdheading-encoder-pid
7377590
changed to constant naming convention
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
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
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 |
|---|---|---|
|
|
@@ -40,7 +40,7 @@ public Turret(Flowable<Double> angle, Flowable<String> state, Talon master, | |
|
|
||
| @Override | ||
| public void registerSubscriptions() { | ||
| FlowOperators.deadband(joyControl).map(FlowOperators::printId).map(x -> Events.power(x / 4)) | ||
| FlowOperators.deadband(joyControl).map(x -> Events.power(x / 4)) | ||
| .subscribe(hoodMaster); //TODO: remove this joystick | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Has this
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed in Lydia's branch, wait for that to be merged. |
||
|
|
||
| /*this.fwdLim.map(b -> b ? | ||
|
|
||
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks really nice. Very declarative!