All
SCPI Commands :
CALibration<HW>:ALL:DATE
CALibration<HW>:ALL:INFormation
CALibration<HW>:ALL:TEMP
CALibration<HW>:ALL:TIME
- class AllCls[source]
All commands group definition. 5 total commands, 1 Subgroups, 4 group commands
- get_date() str [source]
# SCPI: CALibration<HW>:ALL:DATE value: str = driver.calibration.all.get_date()
Queries the date of the most recently executed full adjustment.
- return
date: string
- get_information() str [source]
# SCPI: CALibration<HW>:ALL:INFormation value: str = driver.calibration.all.get_information()
Queries the current state of the internal adjustment.
- return
cal_info_text: string
- get_temp() str [source]
# SCPI: CALibration<HW>:ALL:TEMP value: str = driver.calibration.all.get_temp()
Queries the temperature deviation compared to the calibration temperature.
- return
temperature: string
- get_time() str [source]
# SCPI: CALibration<HW>:ALL:TIME value: str = driver.calibration.all.get_time()
Queries the time elapsed since the last full adjustment.
- return
time: string
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.calibration.all.clone()
Subgroups