Selftest

SCPI Commands :

ABORt:SELFtest
STOP:SELFtest
FETCh:SELFtest
READ:SELFtest
class SelftestCls[source]

Selftest commands group definition. 12 total commands, 4 Subgroups, 4 group commands

abort(opc_timeout_ms: int = -1) None[source]
# SCPI: ABORt:SELFtest
driver.selftest.abort()

No command help available

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.

fetch(filter_py: str = None) List[str][source]
# SCPI: FETCh:SELFtest
value: List[str] = driver.selftest.fetch(filter_py = 'abc')

No command help available

Suppressed linked return values: reliability

param filter_py:

No help available

return:

value: No help available

read(filter_py: str = None) List[str][source]
# SCPI: READ:SELFtest
value: List[str] = driver.selftest.read(filter_py = 'abc')

No command help available

Suppressed linked return values: reliability

param filter_py:

No help available

return:

value: No help available

stop(opc_timeout_ms: int = -1) None[source]
# SCPI: STOP:SELFtest
driver.selftest.stop()

No command help available

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.

Cloning the Group

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

Subgroups