[docs]classAzeroCls:"""Azero commands group definition. 2 total commands, 0 Subgroups, 2 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("azero",core,parent)
[docs]defget_unscaled(self)->float:"""SCPI: [SOURce<HW>]:BB:GNSS:TIME:CONVersion:GLONass:UTCSu:AZERo:UNSCaled \n Snippet: value: float = driver.source.bb.gnss.time.conversion.glonass.utcsu.azero.get_unscaled() \n Sets the constant term of polynomial, A0. \n :return: a_0: No help available """response=self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:TIME:CONVersion:GLONass:UTCSu:AZERo:UNSCaled?')returnConversions.str_to_float(response)
[docs]defset_unscaled(self,a_0:float)->None:"""SCPI: [SOURce<HW>]:BB:GNSS:TIME:CONVersion:GLONass:UTCSu:AZERo:UNSCaled \n Snippet: driver.source.bb.gnss.time.conversion.glonass.utcsu.azero.set_unscaled(a_0 = 1.0) \n Sets the constant term of polynomial, A0. \n :param a_0: integer Range: -2147483648 to 2147483647 """param=Conversions.decimal_value_to_str(a_0)self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:TIME:CONVersion:GLONass:UTCSu:AZERo:UNSCaled {param}')
[docs]defget_value(self)->int:"""SCPI: [SOURce<HW>]:BB:GNSS:TIME:CONVersion:GLONass:UTCSu:AZERo \n Snippet: value: int = driver.source.bb.gnss.time.conversion.glonass.utcsu.azero.get_value() \n Sets the constant term of polynomial, A0. \n :return: azero: integer Range: -2147483648 to 2147483647 """response=self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:TIME:CONVersion:GLONass:UTCSu:AZERo?')returnConversions.str_to_int(response)
[docs]defset_value(self,azero:int)->None:"""SCPI: [SOURce<HW>]:BB:GNSS:TIME:CONVersion:GLONass:UTCSu:AZERo \n Snippet: driver.source.bb.gnss.time.conversion.glonass.utcsu.azero.set_value(azero = 1) \n Sets the constant term of polynomial, A0. \n :param azero: integer Range: -2147483648 to 2147483647 """param=Conversions.decimal_value_to_str(azero)self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:TIME:CONVersion:GLONass:UTCSu:AZERo {param}')