-
Notifications
You must be signed in to change notification settings - Fork 17
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
Add pure pursuit test #28
base: master
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## master #28 +/- ##
=========================================
+ Coverage 77.15% 86.55% +9.4%
=========================================
Files 18 20 +2
Lines 1160 1369 +209
Branches 119 129 +10
=========================================
+ Hits 895 1185 +290
+ Misses 239 154 -85
- Partials 26 30 +4
Continue to review full report at Codecov.
|
floats(min_value=0, max_value=5), | ||
) | ||
def test_find_speed(distance_along_path, start_speed, end_speed): | ||
PP = pp.PurePursuit(0.2, 0.25) |
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.
Is this conceptually a constant?
tests/test_pure_pursuit.py
Outdated
pp.PurePursuit.last_robot_x = 0 | ||
pp.PurePursuit.last_robot_y = 0 | ||
robot_pos = (pos_x, 0) | ||
waypoints = [pp.Segment(0, 0, 0, 0, 0), pp.Segment(10, 0, 0, 0, 10)] |
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.
Why construct this list when you're not really using it?
…ontrol for vision alignment
Vision latency improvements
Barker changes
Climb tuning
Means that robot will always move even if throttle is closed.
Cleanup and improvement of various functions
- Remove heights not being used - Use sparkmaxes for arm motor - Use victor spx for intake motor
Cargo cleanup and added functionality
oh no what have you done |
No description provided.