[docs]classAcPairsCls:"""AcPairs commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("acPairs",core,parent)
[docs]defset(self,channel_pairs:float)->None:"""SCPI: [SENSe]:POWer:ACHannel:ACPairs \n Snippet: driver.sense.power.achannel.acPairs.set(channel_pairs = 1.0) \n Defines the number of pairs of adjacent and alternate channels. \n :param channel_pairs: Range: 0 to 12 """param=Conversions.decimal_value_to_str(channel_pairs)self._core.io.write(f'SENSe:POWer:ACHannel:ACPairs {param}')
[docs]defget(self)->float:"""SCPI: [SENSe]:POWer:ACHannel:ACPairs \n Snippet: value: float = driver.sense.power.achannel.acPairs.get() \n Defines the number of pairs of adjacent and alternate channels. \n :return: channel_pairs: Range: 0 to 12"""response=self._core.io.query_str(f'SENSe:POWer:ACHannel:ACPairs?')returnConversions.str_to_float(response)