fix: update gui to remove dangerous robot commands
CI / lint (push) Skipped
CI / test (3.11) (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
CI / lint (pull_request) Successful in 44s
CI / test (3.11) (pull_request) Failing after 45s
CI / test (3.13) (pull_request) Successful in 1m4s
CI / test (3.12) (pull_request) Successful in 1m5s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Canceled after 1m1s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Canceled after 1m0s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Canceled after 56s
CI / test-with-coverage (pull_request) Canceled after 55s
CI / coverage-analysis (pull_request) Canceled after 0s
CI / lint (push) Skipped
CI / test (3.11) (push) Skipped
CI / test (3.12) (push) Skipped
CI / test (3.13) (push) Skipped
CI / test-with-beamline-plugins (pxi_bec) (push) Skipped
CI / test-with-beamline-plugins (pxii_bec) (push) Skipped
CI / test-with-beamline-plugins (pxiii_bec) (push) Skipped
CI / lint (pull_request) Successful in 44s
CI / test (3.11) (pull_request) Failing after 45s
CI / test (3.13) (pull_request) Successful in 1m4s
CI / test (3.12) (pull_request) Successful in 1m5s
CI / test-with-beamline-plugins (pxi_bec) (pull_request) Canceled after 1m1s
CI / test-with-beamline-plugins (pxii_bec) (pull_request) Canceled after 1m0s
CI / test-with-beamline-plugins (pxiii_bec) (pull_request) Canceled after 56s
CI / test-with-coverage (pull_request) Canceled after 55s
CI / coverage-analysis (pull_request) Canceled after 0s
This commit is contained in:
@@ -1082,7 +1082,7 @@ async def park_and_dry(token: str = Depends(oauth2_scheme)):
|
||||
Dictionary with status and message.
|
||||
"""
|
||||
auth.check_jwt_rw(cfg, auth.parse_token(token))
|
||||
logger.debug("Executing unmount, dry and park")
|
||||
logger.debug("Executing dry and park")
|
||||
daq.park_and_dry(park=True, unmount=False)
|
||||
return {"ok": True, "message": "TELL has been dried and parked"}
|
||||
|
||||
|
||||
@@ -298,29 +298,24 @@ class LocalContactPanel(QFrame):
|
||||
grid = QGridLayout()
|
||||
grid.setHorizontalSpacing(8)
|
||||
grid.setVerticalSpacing(8)
|
||||
row = 0
|
||||
row += 1
|
||||
|
||||
grid.addWidget(
|
||||
self._make_button("Unmount", self._daq.unmount, "Requesting sample unmount."), row, 0
|
||||
self._make_button("Unmount", self._daq.unmount, "Requesting sample unmount."), 0, 0
|
||||
)
|
||||
grid.addWidget(self._make_button("Dry", self._daq.tell_dry, "Requesting TELL dry."), row, 1)
|
||||
row += 1
|
||||
|
||||
grid.addWidget(
|
||||
self._make_button("Park and dry", self._daq.park_and_dry, "Requesting park and dry."),
|
||||
row,
|
||||
0,
|
||||
1,
|
||||
)
|
||||
grid.addWidget(
|
||||
self._make_button("Toggle blower", self._daq.tell_toggle_blower, "Toggling blower."),
|
||||
row,
|
||||
1,
|
||||
0,
|
||||
)
|
||||
row += 1
|
||||
|
||||
grid.addWidget(self._make_button("Anneal", self._anneal_from_dialog), row, 0)
|
||||
grid.addWidget(self._make_button("TELL access info", self._show_tell_access_info), row, 1)
|
||||
grid.addWidget(self._make_button("Anneal", self._anneal_from_dialog), 1, 1)
|
||||
grid.addWidget(self._make_button("TELL access info", self._show_tell_access_info), 2, 0)
|
||||
|
||||
wrapper = QGroupBox("TELL actions", tab)
|
||||
wrapper_layout = QVBoxLayout(wrapper)
|
||||
|
||||
Reference in New Issue
Block a user