[docs]classSequenceCls:"""Sequence commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("sequence",core,parent)
[docs]defget_select(self)->str:"""SCPI: [SOURce<HW>]:BB:ARBitrary:WSEGment:SEQuence:SELect \n Snippet: value: str = driver.source.bb.arbitrary.wsegment.sequence.get_select() \n Selects the sequencing list (files with extension *.wvs) \n :return: filename: string """response=self._core.io.query_str('SOURce<HwInstance>:BB:ARBitrary:WSEGment:SEQuence:SELect?')returntrim_str_response(response)
[docs]defset_select(self,filename:str)->None:"""SCPI: [SOURce<HW>]:BB:ARBitrary:WSEGment:SEQuence:SELect \n Snippet: driver.source.bb.arbitrary.wsegment.sequence.set_select(filename = 'abc') \n Selects the sequencing list (files with extension *.wvs) \n :param filename: string """param=Conversions.value_to_quoted_str(filename)self._core.io.write(f'SOURce<HwInstance>:BB:ARBitrary:WSEGment:SEQuence:SELect {param}')