-
Notifications
You must be signed in to change notification settings - Fork 1
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
Fix/intake #24
Fix/intake #24
Changes from 7 commits
11f9b0c
b029644
640685f
f2873ee
71f19f5
c34ade4
82c0640
32b7e6d
624c997
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"angleJoystickRadiusDeadband": 0.25, | ||
"angleJoystickRadiusDeadband": 0.05, | ||
"heading": { | ||
"p": 0.4, | ||
"i": 0, | ||
"d": 0.01 | ||
"d": 0 | ||
} | ||
} |
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. Why is the ramp rate zero? Is it viable to have the angle motors always run full speed instead of not ramping up to full speed? |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,6 @@ | |
}, | ||
"rampRate": { | ||
"drive": 0.25, | ||
"angle": 0.25 | ||
"angle": 0 | ||
} | ||
} |
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. Why was the IMU inverted? Doesn't the navX configuration require the navX to be inverted regardless? |
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. None of these changes except for changing the default command actually do anything. Are you sure this was intentional? |
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.
Are the PIDs and deadbands correct? The deadband now becomes hyper sensitive and the derivative heading is now zero.