Language

SCPI Command :

[CONFigure]:SIGNaling:ETWS:SECondary:LANGuage
class LanguageCls[source]

Language commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class GetStruct[source]

Response structure. Fields:

  • Language: enums.LanguageB: Two-character language string

  • Cgroup_Language: enums.GroupLanguage: Selects the coding group (GSM 7-bit or UCS-2) . Omitting the value sets G7L.

get(network_scope: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:ETWS:SECondary:LANGuage
value: GetStruct = driver.configure.signaling.etws.secondary.language.get(network_scope = 'abc')

Selects the language string and sets the coding group for ETWS secondary notifications.

param network_scope:

No help available

return:

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

set(network_scope: str, language: LanguageB, cgroup_language: GroupLanguage = None) None[source]
# SCPI: [CONFigure]:SIGNaling:ETWS:SECondary:LANGuage
driver.configure.signaling.etws.secondary.language.set(network_scope = 'abc', language = enums.LanguageB.DANish, cgroup_language = enums.GroupLanguage.G7L)

Selects the language string and sets the coding group for ETWS secondary notifications.

param network_scope:

No help available

param language:

(enum or string) Two-character language string

param cgroup_language:

Selects the coding group (GSM 7-bit or UCS-2) . Omitting the value sets G7L.