Id

SCPI Commands :

[SOURce<HW>]:BB:T2DVb:ID:CELL
[SOURce<HW>]:BB:T2DVb:ID:NETWork
[SOURce<HW>]:BB:T2DVb:ID:T2SYstem
class IdCls[source]

Id commands group definition. 4 total commands, 1 Subgroups, 3 group commands

get_cell() int[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:ID:CELL
value: int = driver.source.bb.t2Dvb.id.get_cell()

Sets the cell identification (ID) .

return:

cell_id: integer 16-bit value in hexadecimal representation. Range: #H0 to #HFFFF

get_network() int[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:ID:NETWork
value: int = driver.source.bb.t2Dvb.id.get_network()

Sets the network identification.

return:

network_id: integer 16-bit value in hexadecimal representation. Range: #H0 to #HFFFF

get_t_2_system() int[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:ID:T2SYstem
value: int = driver.source.bb.t2Dvb.id.get_t_2_system()

Sets the T2 system identification.

return:

t_2_system_id: integer 16-bit value in hexadecimal representation. Range: #H0 to #HFFFF

set_cell(cell_id: int) None[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:ID:CELL
driver.source.bb.t2Dvb.id.set_cell(cell_id = 1)

Sets the cell identification (ID) .

param cell_id:

integer 16-bit value in hexadecimal representation. Range: #H0 to #HFFFF

set_network(network_id: int) None[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:ID:NETWork
driver.source.bb.t2Dvb.id.set_network(network_id = 1)

Sets the network identification.

param network_id:

integer 16-bit value in hexadecimal representation. Range: #H0 to #HFFFF

set_t_2_system(t_2_system_id: int) None[source]
# SCPI: [SOURce<HW>]:BB:T2DVb:ID:T2SYstem
driver.source.bb.t2Dvb.id.set_t_2_system(t_2_system_id = 1)

Sets the T2 system identification.

param t_2_system_id:

integer 16-bit value in hexadecimal representation. Range: #H0 to #HFFFF

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.t2Dvb.id.clone()

Subgroups