Delay

SCPI Commands :

CALibration:DELay:MINutes
CALibration:DELay:[MEASure]
Commands in total: 3
Subgroups: 1
Direct child commands: 2
get_measure() bool[source]
# CALibration:DELay:[MEASure]
value: bool = driver.calibration.delay.get_measure()

Starts the delayed adjustment process. When the warm-up time has elapsed (see method RsSmw.calibration.delay.minutes() , it executes the internal adjustments. If you have enabled automatic shutdown, CALibration:DELay:SHUTdown[:STATe] ON, the instrument shuts down when the adjustments are completed.

Returns:

error: 1 | ON | 0| OFF

get_minutes() int[source]
# CALibration:DELay:MINutes
value: int = driver.calibration.delay.get_minutes()

Sets the warm-up time to wait before internal adjustment starts automatically. Automatic execution starts only, if you have enabled the calibration with command ON.

Returns:

minutes: integer Range: 30 to 120

set_minutes(minutes: int) None[source]
# CALibration:DELay:MINutes
driver.calibration.delay.set_minutes(minutes = 1)

Sets the warm-up time to wait before internal adjustment starts automatically. Automatic execution starts only, if you have enabled the calibration with command ON.

Parameters:

minutes – integer Range: 30 to 120

Cloning the Group

# Create a copy of the original group, that exists independently
delay_copy = driver.calibration.delay.clone()

Subgroups