Source code for RsNgx.Implementations.Measure

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class MeasureCls: """Measure commands group definition. 21 total commands, 2 Subgroups, 0 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("measure", core, parent) @property def voltage(self): """voltage commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_voltage'): from .Voltage import VoltageCls self._voltage = VoltageCls(self._core, self._cmd_group) return self._voltage @property def scalar(self): """scalar commands group. 5 Sub-classes, 0 commands.""" if not hasattr(self, '_scalar'): from .Scalar import ScalarCls self._scalar = ScalarCls(self._core, self._cmd_group) return self._scalar