[docs]classVdeviceCls:"""Vdevice commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("vdevice",core,parent)
[docs]defset(self,state:bool)->None:"""SCPI: SYSTem:COMMunicate:RDEVice:OSCilloscope:VDEVice \n Snippet: driver.applications.k60Transient.system.communicate.rdevice.oscilloscope.vdevice.set(state = False) \n Queries whether the connected instrument is supported by the 2 GHz / 5 GHz bandwidth extension option(B2000/B5000) . For details see 'Prerequisites and Measurement Setup'. \n :param state: ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on """param=Conversions.bool_to_str(state)self._core.io.write(f'SYSTem:COMMunicate:RDEVice:OSCilloscope:VDEVice {param}')
[docs]defget(self)->bool:"""SCPI: SYSTem:COMMunicate:RDEVice:OSCilloscope:VDEVice \n Snippet: value: bool = driver.applications.k60Transient.system.communicate.rdevice.oscilloscope.vdevice.get() \n Queries whether the connected instrument is supported by the 2 GHz / 5 GHz bandwidth extension option(B2000/B5000) . For details see 'Prerequisites and Measurement Setup'. \n :return: state: ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on"""response=self._core.io.query_str(f'SYSTem:COMMunicate:RDEVice:OSCilloscope:VDEVice?')returnConversions.str_to_bool(response)