Condition

SCPI Command :

TRIGger<*>:CXPI:DLC:CONDition
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(trigger=Trigger.Default) ConditionOperator[source]
# TRIGger<*>:CXPI:DLC:CONDition
value: enums.ConditionOperator = driver.trigger.cxpi.dlc.condition.get(trigger = repcap.Trigger.Default)

Set the condition for the DLC. You can define an exact value or a value range.

Parameters:

trigger – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Trigger’)

Returns:

dlc_operator: EQUal | NEQual | LTHan | LETHan | GTHan | GETHan | INRange | OORange

  • EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, Not equal, Less than, Less or equal than, Greater Than, Greater or equal than. These conditions require one DLC pattern to be set with the corresponding TRIGgert:CXPI:DLC:MIN command.

  • INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with TRIGgert:CXPI:DLC:MIN and TRIGgert:CXPI:DLC:MAX.

set(dlc_operator: ConditionOperator, trigger=Trigger.Default) None[source]
# TRIGger<*>:CXPI:DLC:CONDition
driver.trigger.cxpi.dlc.condition.set(dlc_operator = enums.ConditionOperator.EQUal, trigger = repcap.Trigger.Default)

Set the condition for the DLC. You can define an exact value or a value range.

Parameters:
  • dlc_operator

    EQUal | NEQual | LTHan | LETHan | GTHan | GETHan | INRange | OORange

    • EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, Not equal, Less than, Less or equal than, Greater Than, Greater or equal than. These conditions require one DLC pattern to be set with the corresponding TRIGgert:CXPI:DLC:MIN command.

    • INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with TRIGgert:CXPI:DLC:MIN and TRIGgert:CXPI:DLC:MAX.

  • trigger – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Trigger’)