[docs]classPppCls:"""Ppp commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("ppp",core,parent)
[docs]defget_state(self)->bool:"""SCPI: [SOURce<HW>]:[BB]:DME:ID:PPP:[STATe] \n Snippet: value: bool = driver.source.bb.dme.id.ppp.get_state() \n Sets the state of the pair of pulse pairs for the ID signal generation. When enabled a pair of pulse pairs is transmitted during the set [:SOURce<hw>][:BB]:DME:ID:RATE. \n :return: pair_of_pulse_pair: 1| ON| 0| OFF """response=self._core.io.query_str('SOURce<HwInstance>:BB:DME:ID:PPP:STATe?')returnConversions.str_to_bool(response)
[docs]defset_state(self,pair_of_pulse_pair:bool)->None:"""SCPI: [SOURce<HW>]:[BB]:DME:ID:PPP:[STATe] \n Snippet: driver.source.bb.dme.id.ppp.set_state(pair_of_pulse_pair = False) \n Sets the state of the pair of pulse pairs for the ID signal generation. When enabled a pair of pulse pairs is transmitted during the set [:SOURce<hw>][:BB]:DME:ID:RATE. \n :param pair_of_pulse_pair: 1| ON| 0| OFF """param=Conversions.bool_to_str(pair_of_pulse_pair)self._core.io.write(f'SOURce<HwInstance>:BB:DME:ID:PPP:STATe {param}')