IpAddress<IpAddress>

RepCap Settings

# Range: Addr1 .. Addr3
rc = driver.configure.base.mmonitor.ipAddress.repcap_ipAddress_get()
driver.configure.base.mmonitor.ipAddress.repcap_ipAddress_set(repcap.IpAddress.Addr1)

SCPI Command :

CONFigure:BASE:MMONitor:IPADdress<n>
class IpAddressCls[source]

IpAddress commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: IpAddress, default value after init: IpAddress.Addr1

class IpAddressStruct[source]

Response structure. Fields:

  • First_Segment: int: No parameter help available

  • Second_Segment: int: No parameter help available

  • System_Id: int: No parameter help available

  • Local_Id: int: No parameter help available

get(ipAddress=IpAddress.Default) IpAddressStruct[source]
# SCPI: CONFigure:BASE:MMONitor:IPADdress<n>
value: IpAddressStruct = driver.configure.base.mmonitor.ipAddress.get(ipAddress = repcap.IpAddress.Default)

No command help available

param ipAddress:

optional repeated capability selector. Default value: Addr1 (settable in the interface ‘IpAddress’)

return:

structure: for return value, see the help for IpAddressStruct structure arguments.

set(first_segment: int, second_segment: int, system_id: int, local_id: int, ipAddress=IpAddress.Default) None[source]
# SCPI: CONFigure:BASE:MMONitor:IPADdress<n>
driver.configure.base.mmonitor.ipAddress.set(first_segment = 1, second_segment = 1, system_id = 1, local_id = 1, ipAddress = repcap.IpAddress.Default)

No command help available

param first_segment:

No help available

param second_segment:

No help available

param system_id:

No help available

param local_id:

No help available

param ipAddress:

optional repeated capability selector. Default value: Addr1 (settable in the interface ‘IpAddress’)

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.base.mmonitor.ipAddress.clone()