Condition

SCPI Command :

SEARch:TRIGger:ARINc:LABel:CONDition
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) ConditionOperator[source]
# SEARch:TRIGger:ARINc:LABel:CONDition
value: enums.ConditionOperator = driver.search.trigger.arinc.label.condition.get(search = 'abc')

Set the condition for the label or data, respectively. You can define an exact value or a value range

Parameters:

search

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 the corresponding SEARch:TRIGger:ARINc:…:MIN command.

  • INRange | OORange: In range/Out of range: set the minimum and maximum value of the range. withTRIGgert:ARINc:LABel:MIN and TRIGgert:ARINc:LABel:MAX.

set(search: str, label_operator: ConditionOperator) None[source]
# SEARch:TRIGger:ARINc:LABel:CONDition
driver.search.trigger.arinc.label.condition.set(search = 'abc', label_operator = enums.ConditionOperator.EQUal)

Set the condition for the label or data, respectively. You can define an exact value or a value range