road-runner-quickstart VS road-runner

Compare road-runner-quickstart vs road-runner and see what are their differences.

road-runner-quickstart

FTC quickstart for https://github.com/acmerobotics/road-runner (by acmerobotics)

road-runner

Wheeled mobile robot motion planning library designed for FTC (by acmerobotics)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
road-runner-quickstart road-runner
10 6
167 207
1.2% 1.0%
7.7 6.7
3 days ago 5 days ago
Java Kotlin
BSD 3-clause Clear License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

road-runner-quickstart

Posts with mentions or reviews of road-runner-quickstart. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-08.
  • Help roadrunner
    2 projects | /r/FTC | 8 Dec 2023
  • goofy ahh Roadrunner bug caused by heading
    3 projects | /r/FTC | 12 Apr 2023
  • Beta 8973 road runner help
    1 project | /r/FTC | 7 Mar 2023
  • Can someone tell me what roadrunner is?
    1 project | /r/FTC | 3 Dec 2022
    Roadrunner is a motion control library that is mostly commonly used with the roadrunner quickstart:https://github.com/acmerobotics/road-runner-quickstart
  • BIG PROBLEM WITH ROADRUNNER, PLEASE HELP
    1 project | /r/FTC | 1 Dec 2022
    If you are using the roadrunner quickstart, the file should be the same as this: https://github.com/acmerobotics/road-runner-quickstart/blob/master/build.common.gradle
  • Help with Roadrunner Hardware Mapping
    2 projects | /r/FTC | 8 Nov 2022
  • Roadrunner Issue: StrafeTest and MaxAngularVeloTuner telemetry inverted
    1 project | /r/FTC | 14 Jul 2022
    I suspected that I might have screwed something up in the code that I shouldn't have touched yet, so I freshly redownloaded the roadrunner quickstart from https://github.com/acmerobotics/road-runner-quickstart, but the problem persisted.
  • Holonomic paths
    3 projects | /r/FTC | 6 Apr 2022
    All of it is on GitHub. Here is the Road Runner source code, and Here is the quickstart code.
  • Roadrunner angle issues
    1 project | /r/FTC | 7 Feb 2021
    The default SampleMecanumDrive provided by the quickstart has a 5 degree follower breakout condition. If you look at this line: https://github.com/acmerobotics/road-runner-quickstart/blob/066da2b854b1f939fceaf7e5439470fde1ddd853/TeamCode/src/main/java/org/firstinspires/ftc/teamcode/drive/SampleMecanumDrive.java#L121 (Line 121 on the github link), you'll see that there's a Pose for the second to last argument. This is the "admissible error" meaning the follower will stop following if it is within that tolerance. You can see that the default admissible error allows for 5 degrees of tolerance which matches up with your reports. You can lower this number for further accuracy. It may just take a little longer to reach that.

road-runner

Posts with mentions or reviews of road-runner. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-12.
  • goofy ahh Roadrunner bug caused by heading
    3 projects | /r/FTC | 12 Apr 2023
  • how would we edit roadrunner to work with this drive train setup? It currently spins in the straight line test
    1 project | /r/FTC | 3 Nov 2022
    RoadRunner does not come with built-in support for omni wheel drives. To get RoadRunner to work with omni wheel - and be able to strafe - it would require implementing Drive.kt with kinematics for this wheel configuration. Alternatively, you could attempt to treat your robot as a tank drive - but this would require modifying the built-in tank drive code (probably), and you'd lose the capability to strafe. See https://github.com/acmerobotics/road-runner/tree/v0.5.5/core/src/main/kotlin/com/acmerobotics/roadrunner/drive
  • Holonomic paths
    3 projects | /r/FTC | 6 Apr 2022
    The other responses have linked to good general resources. I just want to give some more details on "spinning splines." Such a path can be created by pairing a spline curve with a linear heading interpolator. Most users manipulate these objects through a higher-level API like the builders' method splineToLinearHeading(). However it's made, a trajectory produced from that path gives a complete description of the robot's pose (2D position and heading) and their change over time relative to the (stationary) field. Perhaps these functions are what you're after, but the proof of the trajectory is in its tracking. One could conceivably track the trajectory with a feedback controller regulating the pose error to zero, though the controller would often lag behind and press on constraint boundaries. An integral feature of Road Runner is descent spline following without feedback. Using the pose velocity of the robot in its body frame, one can compute wheel velocities (and motor powers) that will (approximately) trace out the trajectory under ideal conditions (i.e., according to the robot model). Feedback can then build on these base commands for higher accuracy.
  • Spline function
    1 project | /r/FTC | 11 Jan 2022
    There's a paper written by the developer of roadrunner about splines in fact in case you wanna learn more about it: https://github.com/acmerobotics/road-runner/blob/master/doc/pdf/Quintic_Splines_for_FTC.pdf
  • Field Image for CHAD
    1 project | /r/FTC | 22 Sep 2021
    There's this one I made by using print in onshape and then just cropping it to size.

What are some alternatives?

When comparing road-runner-quickstart and road-runner you can also consider the following projects:

InchWorm - A robust and simple custom movement system for FTC teams

LearnJavaForFTC - This is for learning Java for FTC