Condition

SCPI Command :

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

Sets the condition for WORD 2. 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 pattern to be set with the corresponding SEARch:TRIGger:MPHY:LWTWo:MIN command.

  • INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with SEARch:TRIGger:MPHY:LWTWo:MIN and SEARch:TRIGger:MPHY:LWTWo:MAX.

set(search: str, lcc_word_2_optor: ConditionOperator) None[source]
# SEARch:TRIGger:MPHY:LWTWo:CONDition
driver.search.trigger.mphy.lwTwo.condition.set(search = 'abc', lcc_word_2_optor = enums.ConditionOperator.EQUal)

Sets the condition for WORD 2. You can define an exact value or a value range.