Self

SCPI Command:

SYSTem:COMMunicate:GPIB[:SELF]:ENABle
SYSTem:COMMunicate:GPIB[:SELF]:ADDR
class SelfCls[source]

Self commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_addr() int[source]
# SCPI: SYSTem:COMMunicate:GPIB[:SELF]:ADDR
value: int = driver.system.communicate.gpib.self.get_addr()

Sets the primary GPIB address.

return:

adress_no: GPIB address, integer number Range: 0 to 30

get_enable() bool[source]
# SCPI: SYSTem:COMMunicate:GPIB[:SELF]:ENABle
value: bool = driver.system.communicate.gpib.self.get_enable()

Enables or disables the GPIB interface.

return:

enable: No help available

set_addr(adress_no: int) None[source]
# SCPI: SYSTem:COMMunicate:GPIB[:SELF]:ADDR
driver.system.communicate.gpib.self.set_addr(adress_no = 1)

Sets the primary GPIB address.

param adress_no:

GPIB address, integer number Range: 0 to 30

set_enable(enable: bool) None[source]
# SCPI: SYSTem:COMMunicate:GPIB[:SELF]:ENABle
driver.system.communicate.gpib.self.set_enable(enable = False)

Enables or disables the GPIB interface.

param enable:

1 | 0 1: GPIB enabled 0: GPIB disabled