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 1def486 commit f870e69Copy full SHA for f870e69
components/injector.py
@@ -8,6 +8,8 @@
8
9
10
class InjectorComponent:
11
+ desired_injector_voltage = will_reset_to(0.0)
12
+
13
INJECTOR_INJECT_VOLTAGE = tunable(12.0)
14
INJECTOR_INTAKE_VOLTAGE = tunable(-2.0)
15
INJECTOR_BACKDRIVE_VOLTAGE = tunable(-0.5)
@@ -16,8 +18,6 @@ class InjectorComponent:
16
18
INJECTOR_RPS_TOLERANCE = 0.5
17
19
INJECTOR_MAX_ACCEL = 0.5
20
- desired_injector_voltage = will_reset_to(0.0)
-
21
def __init__(self) -> None:
22
self.algae_limit_switch = DigitalInput(DioChannel.ALGAE_INTAKE_SWITCH)
23
0 commit comments