Ils
SCPI Commands :
[SOURce<HW>]:[BB]:ILS:PRESet
[SOURce<HW>]:[BB]:ILS:STATe
[SOURce<HW>]:[BB]:ILS:TYPE
- Commands in total: 100Subgroups: 7Direct child commands: 3
- get_state() bool[source]
# [SOURce<HW>]:[BB]:ILS:STATe value: bool = driver.source.bb.ils.get_state()
Activates/deactivates the avionic standard.
- Returns:
state: 1 | ON | 0| OFF
- get_type_py() AvionicIlsType[source]
# [SOURce<HW>]:[BB]:ILS:TYPE value: enums.AvionicIlsType = driver.source.bb.ils.get_type_py()
Selects the ILS modulation type.
- Returns:
type_py: GS | LOCalize | GSLope | MBEacon
- preset() None[source]
# [SOURce<HW>]:[BB]:ILS:PRESet driver.source.bb.ils.preset()
Sets the parameters of the digital standard to their default values (
*RSTvalues 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]
# [SOURce<HW>]:[BB]:ILS:PRESet driver.source.bb.ils.preset_with_opc()
Sets the parameters of the digital standard to their default values (
*RSTvalues 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.
- Parameters:
opc_timeout_ms – Maximum time to wait in milliseconds, valid only for this call.
- set_state(state: bool) None[source]
# [SOURce<HW>]:[BB]:ILS:STATe driver.source.bb.ils.set_state(state = False)
Activates/deactivates the avionic standard.
- Parameters:
state – 1 | ON | 0| OFF
- set_type_py(type_py: AvionicIlsType) None[source]
# [SOURce<HW>]:[BB]:ILS:TYPE driver.source.bb.ils.set_type_py(type_py = enums.AvionicIlsType.GS)
Selects the ILS modulation type.
- Parameters:
type_py – GS | LOCalize | GSLope | MBEacon
Cloning the Group
# Create a copy of the original group, that exists independently
ils_copy = driver.source.bb.ils.clone()
Subgroups