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 :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: No help available
- 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: No help available
- 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:
No help available
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.calibration.delay.clone()
Subgroups