[docs]classIdnCls:"""Idn commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("idn",core,parent)
[docs]defget(self)->str:"""SCPI: SYSTem:COMMunicate:RDEVice:OSCilloscope:IDN \n Snippet: value: str = driver.applications.k18AmplifierEt.system.communicate.rdevice.oscilloscope.idn.get() \n Returns the identification string of the oscilloscope connected to the FSW. \n :return: idn: No help available"""response=self._core.io.query_str(f'SYSTem:COMMunicate:RDEVice:OSCilloscope:IDN?')returntrim_str_response(response)