ExtA

SCPI Commands :

TRIGger:BASE:EXTA:SOURce
TRIGger:BASE:EXTA:DIRection
TRIGger:BASE:EXTA:SLOPe
class ExtACls[source]

ExtA commands group definition. 4 total commands, 1 Subgroups, 3 group commands

get_direction() DirectionIo[source]
# SCPI: TRIGger:BASE:EXTA:DIRection
value: enums.DirectionIo = driver.trigger.extA.get_direction()

Configures the trigger connectors as input or output connectors.

return:

direction: IN | OUT IN: Input connector OUT: Output connector

get_slope() SignalSlope[source]
# SCPI: TRIGger:BASE:EXTA:SLOPe
value: enums.SignalSlope = driver.trigger.extA.get_slope()

Specifies whether the rising edge or the falling edge of the trigger pulse is generated at the trigger event. The setting applies to output trigger signals provided at the trigger connectors.

return:

slope: REDGe | FEDGe REDGe: Rising edge FEDGe: Falling edge

get_source() str[source]
# SCPI: TRIGger:BASE:EXTA:SOURce
value: str = driver.trigger.extA.get_source()

Selects the output trigger signals to be routed to the trigger connectors. A list of all supported values can be retrieved using TRIGger:BASE:EXTA|EXTB:CATalog:SOURce?.

return:

source: No help available

set_direction(direction: DirectionIo) None[source]
# SCPI: TRIGger:BASE:EXTA:DIRection
driver.trigger.extA.set_direction(direction = enums.DirectionIo.IN)

Configures the trigger connectors as input or output connectors.

param direction:

IN | OUT IN: Input connector OUT: Output connector

set_slope(slope: SignalSlope) None[source]
# SCPI: TRIGger:BASE:EXTA:SLOPe
driver.trigger.extA.set_slope(slope = enums.SignalSlope.FEDGe)

Specifies whether the rising edge or the falling edge of the trigger pulse is generated at the trigger event. The setting applies to output trigger signals provided at the trigger connectors.

param slope:

REDGe | FEDGe REDGe: Rising edge FEDGe: Falling edge

set_source(source: str) None[source]
# SCPI: TRIGger:BASE:EXTA:SOURce
driver.trigger.extA.set_source(source = 'abc')

Selects the output trigger signals to be routed to the trigger connectors. A list of all supported values can be retrieved using TRIGger:BASE:EXTA|EXTB:CATalog:SOURce?.

param source:

string

Cloning the Group

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

Subgroups