Condition
SCPI Command :
TRIGger<*>:ARINc:DATA:CONDition
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(trigger=Trigger.Default) ConditionOperator[source]
# TRIGger<*>:ARINc:DATA:CONDition value: enums.ConditionOperator = driver.trigger.arinc.data.condition.get(trigger = repcap.Trigger.Default)
Sets the condition for the data. You can define an exact data patterm or a data 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 pattern to be set with TRIGgert:ARINc:DATA:MIN.
INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with TRIGgert:ARINc:DATA:MIN and TRIGgert:ARINc:DATA:MAX.
- set(data_operator: ConditionOperator, trigger=Trigger.Default) None[source]
# TRIGger<*>:ARINc:DATA:CONDition driver.trigger.arinc.data.condition.set(data_operator = enums.ConditionOperator.EQUal, trigger = repcap.Trigger.Default)
Sets the condition for the data. You can define an exact data patterm or a data 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 pattern to be set with TRIGgert:ARINc:DATA:MIN.
INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with TRIGgert:ARINc:DATA:MIN and TRIGgert:ARINc:DATA:MAX.
trigger – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Trigger’)