from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class AverageCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("average", core, parent)
[docs]
def get(self) -> float:
"""
``FETCh:IQOFfset:AVERage`` \n
Snippet: ``value: float = driver.applications.k9X11Ad.fetch.iqOffset.average.get()`` \n
Returns the average, maximum or minimum I/Q offset for the PPDU in dB. For details see 'I/Q Offset [dB]'.
"""
response = self._core.io.query_str(f'FETCh:IQOFfset:AVERage?')
return Conversions.str_to_float(response)