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
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class MeasureCls:
"""Measure commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("measure", core, parent)
[docs] def get(self, force: str = None) -> bool:
"""SCPI: CALibration<HW>:LEVel:[MEASure] \n
Snippet: value: bool = driver.calibration.level.measure.get(force = 'abc') \n
No command help available \n
:param force: No help available
:return: measure: No help available"""
param = ArgSingleList().compose_cmd_string(ArgSingle('force', force, DataType.String, None, is_optional=True))
response = self._core.io.query_str(f'CALibration<HwInstance>:LEVel:MEASure? {param}'.rstrip())
return Conversions.str_to_bool(response)