-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(hardware-testing): stacker estop and door switch qc scripts (#16924
- Loading branch information
1 parent
84a57ce
commit ead4491
Showing
4 changed files
with
161 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
hardware-testing/hardware_testing/modules/flex_stacker_evt_qc/test_door_switch.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
"""Test Door Switch.""" | ||
|
||
|
||
from typing import List, Union | ||
from hardware_testing.data import ui | ||
from hardware_testing.data.csv_report import ( | ||
CSVReport, | ||
CSVLine, | ||
CSVLineRepeating, | ||
CSVResult, | ||
) | ||
|
||
from .driver import FlexStacker | ||
|
||
|
||
def build_csv_lines() -> List[Union[CSVLine, CSVLineRepeating]]: | ||
"""Build CSV Lines.""" | ||
return [ | ||
CSVLine("close-door", [CSVResult]), | ||
CSVLine("open-door", [CSVResult]), | ||
] | ||
|
||
|
||
def run(driver: FlexStacker, report: CSVReport, section: str) -> None: | ||
"""Run.""" | ||
ui.print_header("Close Door") | ||
if not driver._simulating: | ||
ui.get_user_ready("Close the hopper door") | ||
closed = driver.get_hopper_door_closed() | ||
report(section, "close-door", [CSVResult.from_bool(closed)]) | ||
|
||
ui.print_header("Open Door") | ||
if not driver._simulating: | ||
ui.get_user_ready("Open the hopper door") | ||
closed = driver.get_hopper_door_closed() | ||
report(section, "open-door", [CSVResult.from_bool(not closed)]) |
91 changes: 91 additions & 0 deletions
91
hardware-testing/hardware_testing/modules/flex_stacker_evt_qc/test_estop.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
"""Test E-Stop.""" | ||
|
||
|
||
from typing import List, Union | ||
from hardware_testing.data import ui | ||
from hardware_testing.data.csv_report import ( | ||
CSVReport, | ||
CSVLine, | ||
CSVLineRepeating, | ||
CSVResult, | ||
) | ||
|
||
from .driver import FlexStacker, Direction, StackerAxis | ||
|
||
|
||
def build_csv_lines() -> List[Union[CSVLine, CSVLineRepeating]]: | ||
"""Build CSV Lines.""" | ||
return [ | ||
CSVLine("trigger-estop", [CSVResult]), | ||
CSVLine("x-move-disabled", [CSVResult]), | ||
CSVLine("z-move-disabled", [CSVResult]), | ||
CSVLine("l-move-disabled", [CSVResult]), | ||
CSVLine("untrigger-estop", [CSVResult]), | ||
] | ||
|
||
|
||
def axis_at_limit(driver: FlexStacker, axis: StackerAxis) -> Direction: | ||
"""Check which direction an axis is at the limit switch.""" | ||
if axis is StackerAxis.L: | ||
# L axis only has one limit switch | ||
if driver.get_limit_switch(axis, Direction.RETRACT): | ||
print(axis, "is at ", Direction.RETRACT, "limit switch") | ||
return Direction.RETRACT | ||
else: | ||
for dir in Direction: | ||
if driver.get_limit_switch(axis, dir): | ||
print(axis, "is at ", dir, "limit switch") | ||
return dir | ||
raise RuntimeError(f"{axis} is not at any limit switch") | ||
|
||
|
||
def run(driver: FlexStacker, report: CSVReport, section: str) -> None: | ||
"""Run.""" | ||
if not driver._simulating and driver.get_estop(): | ||
raise RuntimeError("E-Stop is either triggered/not attached.") | ||
|
||
x_limit = axis_at_limit(driver, StackerAxis.X) | ||
z_limit = axis_at_limit(driver, StackerAxis.Z) | ||
l_limit = axis_at_limit(driver, StackerAxis.L) | ||
|
||
ui.print_header("Trigger E-Stop") | ||
if not driver._simulating: | ||
ui.get_user_ready("Trigger the E-Stop") | ||
|
||
if not driver.get_estop(): | ||
print("E-Stop is not triggered") | ||
report(section, "trigger-estop", [CSVResult.FAIL]) | ||
return | ||
|
||
report(section, "trigger-estop", [CSVResult.PASS]) | ||
|
||
print("try to move X axis...") | ||
driver.move_in_mm(StackerAxis.X, x_limit.opposite().distance(10)) | ||
print("X should not move") | ||
report( | ||
section, | ||
"x-move-disabled", | ||
[CSVResult.from_bool(driver.get_limit_switch(StackerAxis.X, x_limit))], | ||
) | ||
|
||
print("try to move Z axis...") | ||
driver.move_in_mm(StackerAxis.Z, z_limit.opposite().distance(10)) | ||
print("Z should not move") | ||
report( | ||
section, | ||
"z-move-disabled", | ||
[CSVResult.from_bool(driver.get_limit_switch(StackerAxis.Z, z_limit))], | ||
) | ||
|
||
print("try to move L axis...") | ||
driver.move_in_mm(StackerAxis.L, l_limit.opposite().distance(10)) | ||
print("L should not move") | ||
report( | ||
section, | ||
"l-move-disabled", | ||
[CSVResult.from_bool(driver.get_limit_switch(StackerAxis.L, l_limit))], | ||
) | ||
|
||
if not driver._simulating: | ||
ui.get_user_ready("Untrigger the E-Stop") | ||
report(section, "untrigger-estop", [CSVResult.from_bool(not driver.get_estop())]) |