Lock

SCPI Command :

SYSTem:DISPlay:LOCK
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get() bool[source]
# SYSTem:DISPlay:LOCK
value: bool = driver.system.display.lock.get()

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

Returns:

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]
# SYSTem:DISPlay:LOCK
driver.system.display.lock.set(state = False)

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

Parameters:

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.