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