Scan

SCPI Commands :

SLISt:SCAN:LSENsor
SLISt:SCAN:[STATe]
class ScanCls[source]

Scan commands group definition. 3 total commands, 1 Subgroups, 2 group commands

get_state() bool[source]
# SCPI: SLISt:SCAN:[STATe]
value: bool = driver.slist.scan.get_state()

Starts the search for R&S NRP power sensors, connected in the LAN or via the USBTMC protocol.

return

state: 1| ON| 0| OFF

set_lsensor(ip: str) None[source]
# SCPI: SLISt:SCAN:LSENsor
driver.slist.scan.set_lsensor(ip = 'abc')

Scans for R&S NRP power sensors connected in the LAN.

param ip

string

set_state(state: bool) None[source]
# SCPI: SLISt:SCAN:[STATe]
driver.slist.scan.set_state(state = False)

Starts the search for R&S NRP power sensors, connected in the LAN or via the USBTMC protocol.

param state

1| ON| 0| OFF

Cloning the Group

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

Subgroups