Eew

SCPI Commands :

[SOURce<HW>]:BB:ISDBt:EEW:AREAinfo
[SOURce<HW>]:BB:ISDBt:EEW:EEW
[SOURce<HW>]:BB:ISDBt:EEW:NUMepicenter
[SOURce<HW>]:BB:ISDBt:EEW:SIGNaltype
class EewCls[source]

Eew commands group definition. 13 total commands, 9 Subgroups, 4 group commands

get_area_info() List[str][source]
# SCPI: [SOURce<HW>]:BB:ISDBt:EEW:AREAinfo
value: List[str] = driver.source.bb.isdbt.eew.get_area_info()

Sets the target area of the seismic motion warning in hexadecimal presentation.

return:

area_inf: integer Range: #H00000000000000 to #HFFFFFFFFFFFFFF

get_eew() bool[source]
# SCPI: [SOURce<HW>]:BB:ISDBt:EEW:EEW
value: bool = driver.source.bb.isdbt.eew.get_eew()

Enables/disables the system.

return:

eew: 1| ON| 0| OFF

get_num_epicenter() int[source]
# SCPI: [SOURce<HW>]:BB:ISDBt:EEW:NUMepicenter
value: int = driver.source.bb.isdbt.eew.get_num_epicenter()

Identifies the total number of seismic motion information being transmitted.

return:

num_epicenter: integer Range: 1 to 2

get_signal_type() IsdbtEewSignalType[source]
# SCPI: [SOURce<HW>]:BB:ISDBt:EEW:SIGNaltype
value: enums.IsdbtEewSignalType = driver.source.bb.isdbt.eew.get_signal_type()

Identifies the type of seismic motion warning.

return:

signal_type: WWA| WWOA| TWA| TWOA

set_area_info(area_inf: List[str]) None[source]
# SCPI: [SOURce<HW>]:BB:ISDBt:EEW:AREAinfo
driver.source.bb.isdbt.eew.set_area_info(area_inf = ['rawAbc1', 'rawAbc2', 'rawAbc3'])

Sets the target area of the seismic motion warning in hexadecimal presentation.

param area_inf:

integer Range: #H00000000000000 to #HFFFFFFFFFFFFFF

set_eew(eew: bool) None[source]
# SCPI: [SOURce<HW>]:BB:ISDBt:EEW:EEW
driver.source.bb.isdbt.eew.set_eew(eew = False)

Enables/disables the system.

param eew:

1| ON| 0| OFF

set_num_epicenter(num_epicenter: int) None[source]
# SCPI: [SOURce<HW>]:BB:ISDBt:EEW:NUMepicenter
driver.source.bb.isdbt.eew.set_num_epicenter(num_epicenter = 1)

Identifies the total number of seismic motion information being transmitted.

param num_epicenter:

integer Range: 1 to 2

set_signal_type(signal_type: IsdbtEewSignalType) None[source]
# SCPI: [SOURce<HW>]:BB:ISDBt:EEW:SIGNaltype
driver.source.bb.isdbt.eew.set_signal_type(signal_type = enums.IsdbtEewSignalType.TWA)

Identifies the type of seismic motion warning.

param signal_type:

WWA| WWOA| TWA| TWOA

Cloning the Group

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

Subgroups