Skip to content

Commit 8fd3f98

Browse files
LHowe-a11yLeanMeanBeanMachine4774
authored andcommitted
Created refined quick centre path for future testing
1 parent a30d760 commit 8fd3f98

File tree

1 file changed

+21
-6
lines changed

1 file changed

+21
-6
lines changed

autonomous/multi_algae_auto.py

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ class CentreAuto(AutoBase):
77
def __init__(self):
88
super().__init__(
99
[
10-
"StartToAlgaeGH",
11-
"AlgaeGHToShoot",
12-
"ShootToAlgaeIJ",
13-
"AlgaeIJToShoot",
14-
"ShootToAlgaeEF",
15-
"AlgaeEFToShoot",
10+
"StartToAlgaeGH", # Seems good
11+
"AlgaeGHToShoot", # Slight wiggle, rotates while moving but seems not major issue
12+
"ShootToAlgaeIJ", # Goes outwards and takes a wide path while spinning
13+
"AlgaeIJToShoot", # Spins right at the end of its path and moves fastest there
14+
"ShootToAlgaeEF", # Slow long path, spins whole way, could perhaps start slow and spin fast, then speed up, slow down for the sharp corner
15+
"AlgaeEFToShoot", # Funny backward spin at beginning, could perhaps spin the whole way while nearly stationary at end of sharp bend, then move to translational goal
1616
]
1717
)
1818

@@ -59,3 +59,18 @@ def __init__(self):
5959
"AlgaeKLToShootKL",
6060
]
6161
)
62+
63+
class RefinedQuickCentre(AutoBase):
64+
MODE_NAME = "REFINED Quick Centre GH>IJ>KL"
65+
66+
def __init__(self):
67+
super().__init__(
68+
[
69+
"StartToAlgaeGH",
70+
"RefinedAlgaeGHToShootGH",
71+
"RefinedShootGHToAlgaeIJ",
72+
"RefinedAlgaeIJToShootIJ",
73+
"RefinedShootIJToAlgaeKL",
74+
"RefinedAlgaeKLToShootKL",
75+
]
76+
)

0 commit comments

Comments
 (0)