[docs]defsend(self,send_scpi_command:str,path=repcap.Path.Default)->None:"""SCPI: SCONfiguration:EXTernal:RF<CH>:REMote:SEND \n Snippet: driver.sconfiguration.external.rf.remote.send(send_scpi_command = 'abc', path = repcap.Path.Default) \n Allows you to send SCPI commands to the RF instruments connected to the R&S SMW200A. \n :param send_scpi_command: 'SCPI syntax' String containing an SCPI command (query or setting) :param path: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Rf') """param=Conversions.value_to_quoted_str(send_scpi_command)path_cmd_val=self._cmd_group.get_repcap_cmd_value(path,repcap.Path)self._core.io.write(f'SCONfiguration:EXTernal:RF{path_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