Condition
SCPI Command :
SEARch:TRIGger:CXPI:DLC:CONDition
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search: str) ConditionOperator[source]
# SEARch:TRIGger:CXPI:DLC:CONDition value: enums.ConditionOperator = driver.search.trigger.cxpi.dlc.condition.get(search = 'abc')
Set the condition for the DLC. You can define an exact value or a value range.
- Returns:
dlc_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 DLC pattern to be set with the corresponding SEARch:TRIGger:CXPI:DLC:MIN command.
INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with SEARch:TRIGger:CXPI:DLC:MIN and SEARch:TRIGger:CXPI:DLC:MAX.
- set(search: str, dlc_operator: ConditionOperator) None[source]
# SEARch:TRIGger:CXPI:DLC:CONDition driver.search.trigger.cxpi.dlc.condition.set(search = 'abc', dlc_operator = enums.ConditionOperator.EQUal)
Set the condition for the DLC. You can define an exact value or a value range.
- Parameters:
dlc_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 DLC pattern to be set with the corresponding SEARch:TRIGger:CXPI:DLC:MIN command.
INRange | OORange: In range/Out of range: set the minimum and maximum value of the range with SEARch:TRIGger:CXPI:DLC:MIN and SEARch:TRIGger:CXPI:DLC:MAX.