Icondition

SCPI Command :

SEARch:TRIGger:CAN:ICONdition
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search: str) ConditionOperator[source]
# SEARch:TRIGger:CAN:ICONdition
value: enums.ConditionOperator = driver.search.trigger.can.icondition.get(search = 'abc')

Sets the operator to set a specific identifier or an identifier 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 condition require one identifier pattern to be set with SEARch:TRIGger:CAN:IMIN.

  • INRange | OORange: In range / Out of range: Set the minimum and maximum value of the range with SEARch:TRIGger:CAN:IMIN and SEARch:TRIGger:CAN:IMAX.

set(search: str, idtf_optor: ConditionOperator) None[source]
# SEARch:TRIGger:CAN:ICONdition
driver.search.trigger.can.icondition.set(search = 'abc', idtf_optor = enums.ConditionOperator.EQUal)

Sets the operator to set a specific identifier or an identifier range.