Logic
SCPI Command :
SEARch:TRIGger:STATe:D:LOGic
- Commands in total: 1Subgroups: 0Direct child commands: 1
- get(search_name: str) InvertLogicOperator[source]
# SEARch:TRIGger:STATe:D:LOGic value: enums.InvertLogicOperator = driver.search.trigger.state.d.logic.get(search_name = 'abc')
Defines the logic for the indicated channel:
A: CH1
B: CH2
C: CH3
D: CH4
- Parameters:
search_name – String with the name of the search
- Returns:
operator: DIRect | HIGH | NOT | LOW
DIRect: Input value remains unchanged
NOT: Input value is inverted
- set(search_name: str, operator: InvertLogicOperator) None[source]
# SEARch:TRIGger:STATe:D:LOGic driver.search.trigger.state.d.logic.set(search_name = 'abc', operator = enums.InvertLogicOperator.DIRect)
Defines the logic for the indicated channel:
A: CH1
B: CH2
C: CH3
D: CH4
- Parameters:
search_name – String with the name of the search
operator –
DIRect | HIGH | NOT | LOW
DIRect: Input value remains unchanged
NOT: Input value is inverted