You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@nab138 Did you intend to make this a race group? Race groups cancel all commands when any single one of them finishes. I believe this explains what we saw on Tuesday: The robot was already within the shooting zone, satisfying it's finish condition, and canceling the whole group prior to spinup or transit doing anything at all.
I believe a better strategy would be to do the first three conditions here in parallel (move to zone, aim shooter, spinup wheels), and only move on to the shoot command once all three have competed. I'm positive WPI lib has a group that does something like "continue until all finish", just not sure what it's called off the top of my head (I think it might just be the normal Parallel group?).
The text was updated successfully, but these errors were encountered:
2024SwerveBase/src/main/deploy/autos/macros/ScoreNoteIfHave.json
Line 29 in a57c9cb
@nab138 Did you intend to make this a race group? Race groups cancel all commands when any single one of them finishes. I believe this explains what we saw on Tuesday: The robot was already within the shooting zone, satisfying it's finish condition, and canceling the whole group prior to spinup or transit doing anything at all.
I believe a better strategy would be to do the first three conditions here in parallel (move to zone, aim shooter, spinup wheels), and only move on to the shoot command once all three have competed. I'm positive WPI lib has a group that does something like "continue until all finish", just not sure what it's called off the top of my head (I think it might just be the normal Parallel group?).
The text was updated successfully, but these errors were encountered: