[docs]classCouplingCls:"""Coupling commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("coupling",core,parent)
[docs]defget_local(self)->bool:"""SCPI: CALibration<HW>:LOSCillator:COUPling:LOCal \n Snippet: value: bool = driver.calibration.loscillator.coupling.get_local() \n Adjusts the internal LO level at the I/Q modulator automatically, when an external LO signal is fed. \n :return: coupling_level: 1| ON| 0| OFF """response=self._core.io.query_str('CALibration<HwInstance>:LOSCillator:COUPling:LOCal?')returnConversions.str_to_bool(response)