from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from .....Internal.Types import DataType
from .....Internal.ArgSingleList import ArgSingleList
from .....Internal.ArgSingle import ArgSingle
from ..... import repcap
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class PointsCls:
"""Points commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("points", core, parent)
[docs] def get(self, board: str, sub_board: str, channel=repcap.Channel.Default) -> int:
"""SCPI: DIAGnostic<HW>:EEPRom<CH>:DATA:POINts \n
Snippet: value: int = driver.diagnostic.eeprom.data.points.get(board = 'abc', sub_board = 'abc', channel = repcap.Channel.Default) \n
No command help available \n
:param board: No help available
:param sub_board: No help available
:param channel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Eeprom')
:return: points: No help available"""
param = ArgSingleList().compose_cmd_string(ArgSingle('board', board, DataType.String), ArgSingle('sub_board', sub_board, DataType.String))
channel_cmd_val = self._cmd_group.get_repcap_cmd_value(channel, repcap.Channel)
response = self._core.io.query_str(f'DIAGnostic<HwInstance>:EEPRom{channel_cmd_val}:DATA:POINts? {param}'.rstrip())
return Conversions.str_to_int(response)