[docs]classHighCls:"""High commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("high",core,parent)
[docs]defset(self,table_high:str)->None:"""SCPI: [SENSe]:MIXer:LOSS:TABLe:HIGH \n Snippet: driver.applications.k6Pulse.sense.mixer.loss.table.high.set(table_high = 'abc') \n Defines the conversion loss table to be used for the high (second) range. \n :param table_high: No help available """param=Conversions.value_to_quoted_str(table_high)self._core.io.write(f'SENSe:MIXer:LOSS:TABLe:HIGH {param}')
[docs]defget(self)->str:"""SCPI: [SENSe]:MIXer:LOSS:TABLe:HIGH \n Snippet: value: str = driver.applications.k6Pulse.sense.mixer.loss.table.high.get() \n Defines the conversion loss table to be used for the high (second) range. \n :return: table_high: No help available"""response=self._core.io.query_str(f'SENSe:MIXer:LOSS:TABLe:HIGH?')returntrim_str_response(response)