Econdition
SCPI Command :
SEARch:TRIGger:USB:ECONdition
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search: str) ConditionOperator[source]
# SEARch:TRIGger:USB:ECONdition value: enums.ConditionOperator = driver.search.trigger.usb.econdition.get(search = 'abc')
Sets the operator to set a specific endpoint or an endpoint range. The endpoint values are set with method
RsRtx.search.trigger.usb.emin.set()and methodRsRtx.search.trigger.usb.emax.set().- Parameters:
search –
OFF | ANY | EQUal | NEQual | LTHan | LETHan | GTHan | GETHan | INRange | OORange
EQUal | NEQual | LTHan | LETHan | GTHan | GETHan: Equal, Not equal, Less than, Less than or equal, Greater than, Greater than or equal. These conditions require one endpoint value to be set using SEARch:TRIGger:USB:EMIN.
INRange | OORange: In range, out of range. These conditions require a range of endpoint values to be set using SEARch:TRIGger:USB:EMIN and SEARch:TRIGger:USB:EMAX.
- set(search: str, optor_endpoint: ConditionOperator) None[source]
# SEARch:TRIGger:USB:ECONdition driver.search.trigger.usb.econdition.set(search = 'abc', optor_endpoint = enums.ConditionOperator.EQUal)
Sets the operator to set a specific endpoint or an endpoint range. The endpoint values are set with method
RsRtx.search.trigger.usb.emin.set()and methodRsRtx.search.trigger.usb.emax.set().