Enable

SCPI Command :

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

Enables the channel to be considered in the state search. You can enable all channel signals except for the trigger source. Defines the logical combination of the indicated channels after evaluating the previous logical operations:

  • A[:ENABle]: CH1

  • B[:ENABle]: CH2

  • C[:ENABle]: CH3

  • D[:ENABle]: CH4

Digital channels are not available.

Parameters:

search_name – String with the name of the search

Returns:

state: OFF | ON

set(search_name: str, state: bool) None[source]
# SEARch:TRIGger:STATe:D[:ENABle]
driver.search.trigger.state.d.enable.set(search_name = 'abc', state = False)

Enables the channel to be considered in the state search. You can enable all channel signals except for the trigger source. Defines the logical combination of the indicated channels after evaluating the previous logical operations:

  • A[:ENABle]: CH1

  • B[:ENABle]: CH2

  • C[:ENABle]: CH3

  • D[:ENABle]: CH4

Digital channels are not available.

Parameters:
  • search_name – String with the name of the search

  • state – OFF | ON