from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class InternalCls:
"""Internal commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("internal", core, parent)
[docs] def get_deviation(self) -> float:
"""SCPI: [SOURce<HW>]:FM:INTernal:DEViation \n
Snippet: value: float = driver.source.fm.internal.get_deviation() \n
No command help available \n
:return: deviation: 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:
"""SCPI: [SOURce<HW>]:FM:INTernal:DEViation \n
Snippet: driver.source.fm.internal.set_deviation(deviation = 1.0) \n
No command help available \n
:param deviation: No help available
"""
param = Conversions.decimal_value_to_str(deviation)
self._core.io.write(f'SOURce<HwInstance>:FM:INTernal:DEViation {param}')