Psave

SCPI Commands :

DISPlay:PSAVe:HOLDoff
DISPlay:PSAVe:[STATe]
class PsaveCls[source]

Psave commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_holdoff() int[source]
# SCPI: DISPlay:PSAVe:HOLDoff
value: int = driver.display.psave.get_holdoff()

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

return:

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

get_state() bool[source]
# SCPI: 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 RsAreg.Display.Psave.holdoff.

return:

state: 0| 1| OFF| ON

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

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

param holdoff_time_min:

integer Range: 1 to 60, Unit: minute

set_state(state: bool) None[source]
# SCPI: 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 RsAreg.Display.Psave.holdoff.

param state:

0| 1| OFF| ON