Delay

SCPI Commands :

CALibration:DELay:MINutes
CALibration:DELay:[MEASure]
class DelayCls[source]

Delay commands group definition. 3 total commands, 1 Subgroups, 2 group commands

get_measure() bool[source]
# SCPI: CALibration:DELay:[MEASure]
value: bool = driver.calibration.delay.get_measure()

Starts the delayed adjustment process. When the warm-up time has elapsed (see method RsSmbv.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.

return

error: 1| ON| 0| OFF

get_minutes() int[source]
# SCPI: 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.

return

minutes: integer Range: 30 to 120

set_minutes(minutes: int) None[source]
# SCPI: 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.

param minutes

integer Range: 30 to 120

Cloning the Group

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

Subgroups