from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........ import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class StateCls:
"""State commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("state", core, parent)
[docs] def set(self, state: bool, carrier=repcap.Carrier.Default) -> None:
"""SCPI: [SOURce<HW>]:BB:EUTRa:DL:CARRier<CH>:NIOT:STATe \n
Snippet: driver.source.bb.eutra.downlink.carrier.niot.state.set(state = False, carrier = repcap.Carrier.Default) \n
Enables the selected NB-IoT carrier. To enable the NB-IoT configuration, enable the anchor carrier
(SOURce1:BB:EUTRa:DL:CARRier0NIOT:STATe 1) \n
:param state: 1| ON| 0| OFF
:param carrier: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Carrier')
"""
param = Conversions.bool_to_str(state)
carrier_cmd_val = self._cmd_group.get_repcap_cmd_value(carrier, repcap.Carrier)
self._core.io.write(f'SOURce<HwInstance>:BB:EUTRa:DL:CARRier{carrier_cmd_val}:NIOT:STATe {param}')
[docs] def get(self, carrier=repcap.Carrier.Default) -> bool:
"""SCPI: [SOURce<HW>]:BB:EUTRa:DL:CARRier<CH>:NIOT:STATe \n
Snippet: value: bool = driver.source.bb.eutra.downlink.carrier.niot.state.get(carrier = repcap.Carrier.Default) \n
Enables the selected NB-IoT carrier. To enable the NB-IoT configuration, enable the anchor carrier
(SOURce1:BB:EUTRa:DL:CARRier0NIOT:STATe 1) \n
:param carrier: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Carrier')
:return: state: 1| ON| 0| OFF"""
carrier_cmd_val = self._cmd_group.get_repcap_cmd_value(carrier, repcap.Carrier)
response = self._core.io.query_str(f'SOURce<HwInstance>:BB:EUTRa:DL:CARRier{carrier_cmd_val}:NIOT:STATe?')
return Conversions.str_to_bool(response)