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: string Date of the calibration

  • Time: str: string Time of the calibration

  • Type_Py: enums.Type: FSCorrection | UCORrection | CALibration | OGCal Type of the calibration. Can be specified to query the last calibration of a specific type and is returned as last value. FSCorrection: Correction performed in factory or service UCORrection: Correction performed by a customer CALibration: Verification in the factory OGCal: Verification by the service (outgoing calibration)

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

Query the stored information about the latest calibration. Optionally, you can specify <Type> to query information about the latest calibration of this type. The information is returned as ‘<Date>’,’<Time>’,<Type>.

param type_py:

FSCorrection | UCORrection | CALibration | OGCal Type of the calibration. Can be specified to query the last calibration of a specific type and is returned as last value. FSCorrection: Correction performed in factory or service UCORrection: Correction performed by a customer 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.latest.clone()

Subgroups