External

SCPI Commands :

SCONfiguration:EXTernal:ACONnect
SCONfiguration:EXTernal:DISPlay
SCONfiguration:EXTernal:PBEHaviour
class ExternalCls[source]

External commands group definition. 141 total commands, 8 Subgroups, 3 group commands

get_aconnect() bool[source]
# SCPI: SCONfiguration:EXTernal:ACONnect
value: bool = driver.sconfiguration.external.get_aconnect()

Enables automatic detection and connection setup of connected external instruments.

return

state: 1| ON| 0| OFF

get_display() RsSmbv.enums.ExtDevDisplay[source]
# SCPI: SCONfiguration:EXTernal:DISPlay
value: enums.ExtDevDisplay = driver.sconfiguration.external.get_display()

Filters the displayed connectors upon the selected criteria.

return

display_mode: ALL| MAPPed| INPut| OUTPut

get_pbehaviour() bool[source]
# SCPI: SCONfiguration:EXTernal:PBEHaviour
value: bool = driver.sconfiguration.external.get_pbehaviour()

If enabled, the connection to the external instruments is retained after preset (*RST) of the instrument.

return

state: 1| ON| 0| OFF

set_aconnect(state: bool) None[source]
# SCPI: SCONfiguration:EXTernal:ACONnect
driver.sconfiguration.external.set_aconnect(state = False)

Enables automatic detection and connection setup of connected external instruments.

param state

1| ON| 0| OFF

set_display(display_mode: RsSmbv.enums.ExtDevDisplay) None[source]
# SCPI: SCONfiguration:EXTernal:DISPlay
driver.sconfiguration.external.set_display(display_mode = enums.ExtDevDisplay.ALL)

Filters the displayed connectors upon the selected criteria.

param display_mode

ALL| MAPPed| INPut| OUTPut

set_pbehaviour(state: bool) None[source]
# SCPI: SCONfiguration:EXTernal:PBEHaviour
driver.sconfiguration.external.set_pbehaviour(state = False)

If enabled, the connection to the external instruments is retained after preset (*RST) of the instrument.

param state

1| ON| 0| OFF

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.sconfiguration.external.clone()

Subgroups