Latest

SCPI Command:

CALibration:BASE:LATest
class LatestCls[source]

Latest commands group definition. 2 total commands, 1 Subgroups, 1 group commands

class GetStruct[source]

Response structure. Fields:

  • Date: str: Date of the calibration as string

  • Time: str: Time of the calibration as string

  • Type_Py: enums.CalibType: FSCorrection | CALibration | OGCal Type of the calibration FSCorrection Correction performed in factory or service CALibration Verification in the factory OGCal Verification by the service (outgoing calibration)

get(type_py: CalibType = None) GetStruct[source]
# SCPI: CALibration:BASE:LATest
value: GetStruct = driver.calibration.base.latest.get(type_py = enums.CalibType.CALibration)

Queries information about the latest calibration. Optionally, specify <Type> to query information about the latest calibration of a specific type. The information is returned as <Date>,<Time>,<Type>.

param type_py:

FSCorrection | CALibration | OGCal Type of the calibration FSCorrection Correction performed in factory or service CALibration Verification in the factory OGCal Verification by the service (outgoing calibration)

return:

structure: for return value, see the help for GetStruct structure arguments.

Cloning the Group

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

Subgroups