Out

SCPI Command:

TRIGger:BASE:OUT:SOURce
class OutCls[source]

Out commands group definition. 2 total commands, 1 Subgroups, 1 group commands

get_source() str[source]
# SCPI: TRIGger:BASE:OUT:SOURce
value: str = driver.trigger.base.out.get_source()

Selects the output trigger signal to be routed to the TRIG OUT connector.

return:

source: Source as string, examples: ‘No Connection’ TRIG OUT connector deactivated ‘Base1: External TRIG In’ Trigger signal from TRIG IN connector ‘AFRF Gen1: …’ Trigger signal from processed waveform file

set_source(source: str) None[source]
# SCPI: TRIGger:BASE:OUT:SOURce
driver.trigger.base.out.set_source(source = '1')

Selects the output trigger signal to be routed to the TRIG OUT connector.

param source:

Source as string, examples: ‘No Connection’ TRIG OUT connector deactivated ‘Base1: External TRIG In’ Trigger signal from TRIG IN connector ‘AFRF Gen1: …’ Trigger signal from processed waveform file

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.trigger.base.out.clone()

Subgroups