Sicn
SCPI Command :
SEARch:TRIGger:SENT:SICN
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search: str) ConditionOperator[source]
# SEARch:TRIGger:SENT:SICN value: enums.ConditionOperator = driver.search.trigger.sent.sicn.get(search = 'abc')
Sets the operator to set a specific data pattern or a data pattern range.
- Returns:
smid_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 SEARch:TRIGger:SENT:SIMN.
INRange | OORange: In range / Out of range. To define the range set the minimum and maximum values with SEARch:TRIGger:SENT:SIMN and SEARch:TRIGger:SENT:SIMX.
- set(search: str, smid_operator: ConditionOperator) None[source]
# SEARch:TRIGger:SENT:SICN driver.search.trigger.sent.sicn.set(search = 'abc', smid_operator = enums.ConditionOperator.EQUal)
Sets the operator to set a specific data pattern or a data pattern range.
- Parameters:
smid_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 SEARch:TRIGger:SENT:SIMN.
INRange | OORange: In range / Out of range. To define the range set the minimum and maximum values with SEARch:TRIGger:SENT:SIMN and SEARch:TRIGger:SENT:SIMX.