from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from ..... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class AngleCls:
"""Angle commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("angle", core, parent)
[docs] def set(self, unit: enums.AngleUnit) -> None:
"""SCPI: UNIT:ANGLe \n
Snippet: driver.applications.k9X11Ad.unit.angle.set(unit = enums.AngleUnit.DEG) \n
Selects the unit for angles (for phase displays) . \n
:param unit: DEG | RAD
"""
param = Conversions.enum_scalar_to_str(unit, enums.AngleUnit)
self._core.io.write(f'UNIT:ANGLe {param}')
# noinspection PyTypeChecker
[docs] def get(self) -> enums.AngleUnit:
"""SCPI: UNIT:ANGLe \n
Snippet: value: enums.AngleUnit = driver.applications.k9X11Ad.unit.angle.get() \n
Selects the unit for angles (for phase displays) . \n
:return: unit: DEG | RAD"""
response = self._core.io.query_str(f'UNIT:ANGLe?')
return Conversions.str_to_scalar_enum(response, enums.AngleUnit)