[docs]defsend(self,send_scpi_command:str,digitalIq=repcap.DigitalIq.Default)->None:"""SCPI: SCONfiguration:EXTernal:FADer<CH>:REMote:SEND \n Snippet: driver.sconfiguration.external.fader.remote.send(send_scpi_command = 'abc', digitalIq = repcap.DigitalIq.Default) \n No command help available \n :param send_scpi_command: No help available :param digitalIq: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Fader') """param=Conversions.value_to_quoted_str(send_scpi_command)digitalIq_cmd_val=self._cmd_group.get_repcap_cmd_value(digitalIq,repcap.DigitalIq)self._core.io.write(f'SCONfiguration:EXTernal:FADer{digitalIq_cmd_val}:REMote:SEND {param}')
defclone(self)->'RemoteCls':"""Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group"""new_group=RemoteCls(self._core,self._cmd_group.parent)self._cmd_group.synchronize_repcaps(new_group)returnnew_group