Gpib
SCPI Commands :
GPIB:TERMinator
GPIB:ADDRess
- Commands in total: 2Subgroups: 0Direct child commands: 2
- get_address() int[source]
# GPIB:ADDRess value: int = driver.gpib.get_address()
Sets the GPIB address of the instrument. Changing the address has major effects on the communication to the remote computer.
- Returns:
address: 0 to 30
- get_terminator() GpibTerminator[source]
# GPIB:TERMinator value: enums.GpibTerminator = driver.gpib.get_terminator()
Specifies the symbol that is used as a terminator in GPIB communication.
- Returns:
terminator: LFEoi | EOI
- set_address(address: int) None[source]
# GPIB:ADDRess driver.gpib.set_address(address = 1)
Sets the GPIB address of the instrument. Changing the address has major effects on the communication to the remote computer.
- Parameters:
address – 0 to 30
- set_terminator(terminator: GpibTerminator) None[source]
# GPIB:TERMinator driver.gpib.set_terminator(terminator = enums.GpibTerminator.EOI)
Specifies the symbol that is used as a terminator in GPIB communication.
- Parameters:
terminator – LFEoi | EOI