Label

SCPI Command :

BUS<*>:PARallel:BIT<*>:LABel
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get(bus=Bus.Default, bitNull=BitNull.Default) str[source]
# BUS<*>:PARallel:BIT<*>:LABel
value: str = driver.bus.parallel.bit.label.get(bus = repcap.Bus.Default, bitNull = repcap.BitNull.Default)

Sets a name for the indicated digital channel. The name is displayed in the diagram. For the parallel bus 1, you can also use method RsRtx.digital.label.set() .

Parameters:
  • bus – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Bus’)

  • bitNull – optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Bit’)

Returns:

label: String containing the channel name

set(label: str, bus=Bus.Default, bitNull=BitNull.Default) None[source]
# BUS<*>:PARallel:BIT<*>:LABel
driver.bus.parallel.bit.label.set(label = 'abc', bus = repcap.Bus.Default, bitNull = repcap.BitNull.Default)

Sets a name for the indicated digital channel. The name is displayed in the diagram. For the parallel bus 1, you can also use method RsRtx.digital.label.set() .

Parameters:
  • label – String containing the channel name

  • bus – optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Bus’)

  • bitNull – optional repeated capability selector. Default value: Nr0 (settable in the interface ‘Bit’)