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