Source code for RsFsw.Implementations.Sense.Power.Achannel.AcPairs

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class AcPairsCls: """AcPairs commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("acPairs", core, parent)
[docs] def set(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] def get(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?') return Conversions.str_to_float(response)