Psave

SCPI Commands :

DISPlay:PSAVe:HOLDoff
DISPlay:PSAVe:[STATe]
Commands in total: 2
Subgroups: 0
Direct child commands: 2
get_holdoff() int[source]
# DISPlay:PSAVe:HOLDoff
value: int = driver.display.psave.get_holdoff()

Sets the wait time for the screen saver mode of the display.

Returns:

holdoff_time_min: integer Range: 1 to 60, Unit: minute

get_state() bool[source]
# DISPlay:PSAVe:[STATe]
value: bool = driver.display.psave.get_state()

Activates the screen saver mode of the display. We recommend that you use this mode to protect the display, if you operate the instrument in remote control. To define the wait time, use the command method RsSmw.display.psave.holdoff() .

Returns:

state: 1 | ON | 0| OFF

set_holdoff(holdoff_time_min: int) None[source]
# DISPlay:PSAVe:HOLDoff
driver.display.psave.set_holdoff(holdoff_time_min = 1)

Sets the wait time for the screen saver mode of the display.

Parameters:

holdoff_time_min – integer Range: 1 to 60, Unit: minute

set_state(state: bool) None[source]
# DISPlay:PSAVe:[STATe]
driver.display.psave.set_state(state = False)

Activates the screen saver mode of the display. We recommend that you use this mode to protect the display, if you operate the instrument in remote control. To define the wait time, use the command method RsSmw.display.psave.holdoff() .

Parameters:

state – 1 | ON | 0| OFF