Lock

SCPI Commands

CONFigure:LOCK:MODE
class Lock[source]

Lock commands group definition. 1 total commands, 0 Sub-groups, 1 group commands

get_mode() bool[source]
# SCPI: CONFigure:LOCK:MODE
value: bool = driver.configure.lock.get_mode()

Enables or disables the lock mode or queries this mode.

return

state: - 1 | ON: The switching of relays and the setting of output channels is locked. - 0 | OFF: Relays and output channels are not locked.

set_mode(state: bool) None[source]
# SCPI: CONFigure:LOCK:MODE
driver.configure.lock.set_mode(state = False)

Enables or disables the lock mode or queries this mode.

param state
  • 1 | ON: The switching of relays and the setting of output channels is locked.

  • 0 | OFF: Relays and output channels are not locked.