Logic

SCPI Command :

SEARch:TRIGger:STATe:B:LOGic
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search_name: str) InvertLogicOperator[source]
# SEARch:TRIGger:STATe:B:LOGic
value: enums.InvertLogicOperator = driver.search.trigger.state.b.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:B:LOGic
driver.search.trigger.state.b.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