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