Condition

SCPI Command :

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

Sets the condition for PACP Begin. 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 data pattern to be set with the corresponding SEARch:TRIGger:MPHY:PBEGin:MIN command.

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

set(search: str, pacp_begin_optor: ConditionOperator) None[source]
# SEARch:TRIGger:MPHY:PBEGin:CONDition
driver.search.trigger.mphy.pbegin.condition.set(search = 'abc', pacp_begin_optor = enums.ConditionOperator.EQUal)

Sets the condition for PACP Begin. You can define an exact value or a value range.