Source code for RsFsw.Implementations.Applications.K9x_11ad.Unit.Angle

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.applications.k9X11Ad.unit.angle.set(unit = enums.AngleUnit.DEG)`` \n Selects the unit for angles (for phase displays) . :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.applications.k9X11Ad.unit.angle.get()`` \n Selects the unit for angles (for phase displays) . :return: unit: DEG | RAD """ response = self._core.io.query_str(f'UNIT:ANGLe?') return Conversions.str_to_scalar_enum(response, enums.AngleUnit)