Delay

SCPI Commands

OUTPut:DELay:DURation
OUTPut:DELay:STATe
class DelayCls[source]

Delay commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_duration() float[source]
# SCPI: OUTPut:DELay:DURation
value: float = driver.output.delay.get_duration()

Sets or queries the duration for output delay.

return

sequence_delay: No help available

get_state() bool[source]
# SCPI: OUTPut:DELay[:STATe]
value: bool = driver.output.delay.get_state()

Sets or queries the output delay state for the selected channel.

return

arg_0: No help available

set_duration(sequence_delay: float) None[source]
# SCPI: OUTPut:DELay:DURation
driver.output.delay.set_duration(sequence_delay = 1.0)

Sets or queries the duration for output delay.

param sequence_delay
  • numeric value: Numeric value of the duration in seconds.

  • MIN | MINimum: Minimum value of the duration at 0.001 seconds.

  • MAX | MAXimum: Maximum value of the duration at 10.00 seconds.

set_state(arg_0: bool) None[source]
# SCPI: OUTPut:DELay[:STATe]
driver.output.delay.set_state(arg_0 = False)

Sets or queries the output delay state for the selected channel.

param arg_0
  • 0: Deactivates output delay for the selected channel.

  • 1: Activates output delay for the selected channel.