Enable

SCPI Command :

SEARch:TRIGger:PATTern:A[:ENABle]
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(search_name: str) bool[source]
# SEARch:TRIGger:PATTern:A[:ENABle]
value: bool = driver.search.trigger.pattern.a.enable.get(search_name = 'abc')

Enables the channel to be considered in the pattern search. The trigger source channel is selected by default. Defines the logic for the indicated channel:

  • A[:ENABle]: CH1

  • B[:ENABle]: CH2

  • C[:ENABle]: CH3

  • D[:ENABle]: CH4

Digital channels are not available.

Parameters:

search_name – String with name of the search

Returns:

state: OFF | ON

set(search_name: str, state: bool) None[source]
# SEARch:TRIGger:PATTern:A[:ENABle]
driver.search.trigger.pattern.a.enable.set(search_name = 'abc', state = False)

Enables the channel to be considered in the pattern search. The trigger source channel is selected by default. Defines the logic for the indicated channel:

  • A[:ENABle]: CH1

  • B[:ENABle]: CH2

  • C[:ENABle]: CH3

  • D[:ENABle]: CH4

Digital channels are not available.

Parameters:
  • search_name – String with name of the search

  • state – OFF | ON