from ...Internal.Core import Core
from ...Internal.CommandsGroup import CommandsGroup
from ...Internal import Conversions
from ... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class AngleCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("angle", core, parent)
[docs]
def set(self, unit: enums.AngleUnit) -> None:
"""
``UNIT:ANGLe`` \n
Snippet: ``driver.unit.angle.set(unit = enums.AngleUnit.DEG)`` \n
Selects the unit for angles (for PM display, <n> is irrelevant) . Is identical to method
``RsFsw.calculate.unit.angle.set()``
: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:
"""
``UNIT:ANGLe`` \n
Snippet: ``value: enums.AngleUnit = driver.unit.angle.get()`` \n
Selects the unit for angles (for PM display, <n> is irrelevant) . Is identical to method
``RsFsw.calculate.unit.angle.set()``
:return: unit: DEG | RAD
"""
response = self._core.io.query_str(f'UNIT:ANGLe?')
return Conversions.str_to_scalar_enum(response, enums.AngleUnit)