Ils
SCPI Commands :
[SOURce<HW>]:[BB]:ILS:PRESet
[SOURce<HW>]:[BB]:ILS:STATe
[SOURce<HW>]:[BB]:ILS:TYPE
- class IlsCls[source]
Ils commands group definition. 100 total commands, 7 Subgroups, 3 group commands
- get_state() bool [source]
# SCPI: [SOURce<HW>]:[BB]:ILS:STATe value: bool = driver.source.bb.ils.get_state()
Activates/deactivates the avionic standard.
- return
state: 1| ON| 0| OFF
- get_type_py() RsSmbv.enums.AvionicIlsType [source]
# SCPI: [SOURce<HW>]:[BB]:ILS:TYPE value: enums.AvionicIlsType = driver.source.bb.ils.get_type_py()
Selects the ILS modulation type.
- return
type_py: GS| LOCalize| GSLope| MBEacon
- preset() None [source]
# SCPI: [SOURce<HW>]:[BB]:ILS:PRESet driver.source.bb.ils.preset()
Sets the parameters of the digital standard to their default values (*RST values specified for the commands) . Not affected is the state set with the command SOURce<hw>:BB:VOR|ILS|DME:STATe.
- preset_with_opc(opc_timeout_ms: int = - 1) None [source]
# SCPI: [SOURce<HW>]:[BB]:ILS:PRESet driver.source.bb.ils.preset_with_opc()
Sets the parameters of the digital standard to their default values (*RST values specified for the commands) . Not affected is the state set with the command SOURce<hw>:BB:VOR|ILS|DME:STATe.
Same as preset, but waits for the operation to complete before continuing further. Use the RsSmbv.utilities.opc_timeout_set() to set the timeout value.
- param opc_timeout_ms
Maximum time to wait in milliseconds, valid only for this call.
- set_state(state: bool) None [source]
# SCPI: [SOURce<HW>]:[BB]:ILS:STATe driver.source.bb.ils.set_state(state = False)
Activates/deactivates the avionic standard.
- param state
1| ON| 0| OFF
- set_type_py(type_py: RsSmbv.enums.AvionicIlsType) None [source]
# SCPI: [SOURce<HW>]:[BB]:ILS:TYPE driver.source.bb.ils.set_type_py(type_py = enums.AvionicIlsType.GS)
Selects the ILS modulation type.
- param type_py
GS| LOCalize| GSLope| MBEacon
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.bb.ils.clone()
Subgroups