Skip to content

Commit

Permalink
when we estop the motors dont hold current, so the sprint pushes off …
Browse files Browse the repository at this point in the history
…the limit switch, which should be off
  • Loading branch information
vegano1 committed Nov 27, 2024
1 parent bff0dc6 commit 7d3b418
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def run(driver: FlexStacker, report: CSVReport, section: str) -> None:
report(
section,
"x-move-disabled",
[CSVResult.from_bool(driver.get_limit_switch(StackerAxis.X, x_limit))],
[CSVResult.from_bool(not driver.get_limit_switch(StackerAxis.X, x_limit))],
)

print("try to move Z axis...")
Expand Down

0 comments on commit 7d3b418

Please sign in to comment.