Source code for RsSmw.Implementations.Source.Fm.Internal

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class InternalCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("internal", core, parent)

[docs] def get_deviation(self) -> float: """ ``[SOURce<HW>]:FM:INTernal:DEViation`` \n Snippet: ``value: float = driver.source.fm.internal.get_deviation()`` \n No help available """ response = self._core.io.query_str('SOURce<HwInstance>:FM:INTernal:DEViation?') return Conversions.str_to_float(response)
[docs] def set_deviation(self, deviation: float) -> None: """ ``[SOURce<HW>]:FM:INTernal:DEViation`` \n Snippet: ``driver.source.fm.internal.set_deviation(deviation = 1.0)`` \n No help available """ param = Conversions.decimal_value_to_str(deviation) self._core.io.write(f'SOURce<HwInstance>:FM:INTernal:DEViation {param}')