Dcondition

SCPI Command :

TRIGger<*>:LIN:DCONdition
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(trigger=Trigger.Default) ConditionOperator[source]
# TRIGger<*>:LIN:DCONdition
value: enums.ConditionOperator = driver.trigger.lin.dcondition.get(trigger = repcap.Trigger.Default)

Sets the operator to set a specific data pattern or a data pattern range.

Parameters:

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

Returns:

data_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 data pattern to be set with TRIGgert:LIN:DMIN.

  • INRange | OORange: In range / Out of range: Set the minimum and maximum value of the range with TRIGgert:LIN:DMIN and TRIGgert:LIN:DMAX

set(data_operator: ConditionOperator, trigger=Trigger.Default) None[source]
# TRIGger<*>:LIN:DCONdition
driver.trigger.lin.dcondition.set(data_operator = enums.ConditionOperator.EQUal, trigger = repcap.Trigger.Default)

Sets the operator to set a specific data pattern or a data pattern range.

Parameters:
  • data_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 data pattern to be set with TRIGgert:LIN:DMIN.

    • INRange | OORange: In range / Out of range: Set the minimum and maximum value of the range with TRIGgert:LIN:DMIN and TRIGgert:LIN:DMAX

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