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