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
class PointsCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
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:
"""
``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 help available
:param channel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Eeprom')
"""
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)