[docs]classAddressCls:"""Address commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("address",core,parent)
[docs]defset(self,address:float)->None:"""SCPI: SYSTem:COMMunicate:GPIB[:SELF]:ADDRess \n Snippet: driver.system.communicate.gpib.self.address.set(address = 1.0) \n This command sets the GPIB address of the FSW. \n :param address: Range: 0 to 30 """param=Conversions.decimal_value_to_str(address)self._core.io.write(f'SYSTem:COMMunicate:GPIB:SELF:ADDRess {param}')
[docs]defget(self)->float:"""SCPI: SYSTem:COMMunicate:GPIB[:SELF]:ADDRess \n Snippet: value: float = driver.system.communicate.gpib.self.address.get() \n This command sets the GPIB address of the FSW. \n :return: address: Range: 0 to 30"""response=self._core.io.query_str(f'SYSTem:COMMunicate:GPIB:SELF:ADDRess?')returnConversions.str_to_float(response)