Condition

SCPI Command :

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

Sets the condition for the length / type. You can define an exact value or a value range.

Returns:

type_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 the corresponding SEARch:TRIGger:HBTO:LENGth:MIN command.

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

set(search: str, type_operator: ConditionOperator) None[source]
# SEARch:TRIGger:HBTO:LENGth:CONDition
driver.search.trigger.hbto.length.condition.set(search = 'abc', type_operator = enums.ConditionOperator.EQUal)

Sets the condition for the length / type. You can define an exact value or a value range.

Parameters:

type_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 the corresponding SEARch:TRIGger:HBTO:LENGth:MIN command.

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