Delay
SCPI Commands :
[SOURce<HW>]:BB:WLNN:TRIGger:OUTPut<CH>:DELay
[SOURce<HW>]:BB:WLNN:TRIGger:OUTPut:DELay:FIXed
- class DelayCls[source]
Delay commands group definition. 4 total commands, 2 Subgroups, 2 group commands
- get(output=Output.Default) float [source]
# SCPI: [SOURce<HW>]:BB:WLNN:TRIGger:OUTPut<CH>:DELay value: float = driver.source.bb.wlnn.trigger.output.delay.get(output = repcap.Output.Default)
Defines the delay between the signal on the marker outputs and the start of the signals.
- param output
optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Output’)
- return
delay: float Range: 0 to 16777215
- get_fixed() bool [source]
# SCPI: [SOURce<HW>]:BB:WLNN:TRIGger:OUTPut:DELay:FIXed value: bool = driver.source.bb.wlnn.trigger.output.delay.get_fixed()
No command help available
- return
fixed: No help available
- set(delay: float, output=Output.Default) None [source]
# SCPI: [SOURce<HW>]:BB:WLNN:TRIGger:OUTPut<CH>:DELay driver.source.bb.wlnn.trigger.output.delay.set(delay = 1.0, output = repcap.Output.Default)
Defines the delay between the signal on the marker outputs and the start of the signals.
- param delay
float Range: 0 to 16777215
- param output
optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Output’)
- set_fixed(fixed: bool) None [source]
# SCPI: [SOURce<HW>]:BB:WLNN:TRIGger:OUTPut:DELay:FIXed driver.source.bb.wlnn.trigger.output.delay.set_fixed(fixed = False)
No command help available
- param fixed
No help available
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.bb.wlnn.trigger.output.delay.clone()
Subgroups