MacroCreate

SCPI Command :

*DMC
class MacroCreateCls[source]

MacroCreate commands group definition. 1 total commands, 0 Subgroups, 1 group commands

get(label: str) str[source]
# SCPI: *DMC
value: str = driver.macroCreate.get(label = 'abc')

Creates a macro. If the label exists already, the macro contents are overwritten. Macros are deleted when a remote connection is closed but can be saved to a macro file for later reuse, see method RsCMPX_Base.MassMemory.Store.Macro.set. Avoid using labels which are identical with supported remote control commands. In contrast to SCPI stipulations, remote commands have priority over macros.

param label:

No help available

return:

macro: No help available

set(label: str, macro: str) None[source]
# SCPI: *DMC
driver.macroCreate.set(label = 'abc', macro = 'abc')

Creates a macro. If the label exists already, the macro contents are overwritten. Macros are deleted when a remote connection is closed but can be saved to a macro file for later reuse, see method RsCMPX_Base.MassMemory.Store.Macro.set. Avoid using labels which are identical with supported remote control commands. In contrast to SCPI stipulations, remote commands have priority over macros.

param label:

No help available

param macro:

No help available