[docs]classB1ICls:"""B1I commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("b1I",core,parent)
[docs]defget_state(self)->bool:"""SCPI: [SOURce<HW>]:BB:GNSS:SYSTem:BEIDou:SIGNal:L1Band:B1I:[STATe] \n Snippet: value: bool = driver.source.bb.gnss.system.beidou.signal.l1Band.b1I.get_state() \n Enables the corresponding signal from the GNSS system in the corresponding RF band. \n :return: signal_state: 1| ON| 0| OFF """response=self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:SYSTem:BEIDou:SIGNal:L1Band:B1I:STATe?')returnConversions.str_to_bool(response)
[docs]defset_state(self,signal_state:bool)->None:"""SCPI: [SOURce<HW>]:BB:GNSS:SYSTem:BEIDou:SIGNal:L1Band:B1I:[STATe] \n Snippet: driver.source.bb.gnss.system.beidou.signal.l1Band.b1I.set_state(signal_state = False) \n Enables the corresponding signal from the GNSS system in the corresponding RF band. \n :param signal_state: 1| ON| 0| OFF """param=Conversions.bool_to_str(signal_state)self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:SYSTem:BEIDou:SIGNal:L1Band:B1I:STATe {param}')