We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6e705f commit cb78e8fCopy full SHA for cb78e8f
controllers/floor_intake.py
@@ -45,12 +45,13 @@ def intaking(self, initial_call: bool):
45
46
@state(must_finish=True)
47
def measuring(self, initial_call):
48
+ self.wrist.go_to_neutral()
49
+ self.intake_component.retract()
50
+
51
if initial_call:
52
self.algae_measurement.measure()
53
elif not self.algae_measurement.is_executing:
54
self.done()
55
56
def done(self) -> None:
57
super().done()
- self.wrist.go_to_neutral()
- self.intake_component.retract()
0 commit comments