Lock

SCPI Command :

SYSTem:DISPlay:LOCK
class LockCls[source]

Lock commands group definition. 1 total commands, 0 Subgroups, 1 group commands

get() bool[source]
# SCPI: SYSTem:DISPlay:LOCK
value: bool = driver.system.display.lock.get()

Defines whether the ‘Display Update’ function remains available in remote operation or not.

return

state: ON | OFF | 0 | 1 OFF | 0 The function remains available. ON | 1 The function is not available and the display is not updated during remote operation.

set(state: bool) None[source]
# SCPI: SYSTem:DISPlay:LOCK
driver.system.display.lock.set(state = False)

Defines whether the ‘Display Update’ function remains available in remote operation or not.

param state

ON | OFF | 0 | 1 OFF | 0 The function remains available. ON | 1 The function is not available and the display is not updated during remote operation.