[docs]classDeviceCls:"""Device commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("device",core,parent)
[docs]defget_id(self)->str:"""SCPI: SYSTem:DEVice:ID \n Snippet: value: str = driver.system.device.get_id() \n No command help available \n :return: pseudo_string: No help available """response=self._core.io.query_str('SYSTem:DEVice:ID?')returntrim_str_response(response)