Source code for RsFsw.Implementations.Applications.K10x_Lte.Configure.Lte.OoPower.Nframes

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


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

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

[docs] def set(self, frames: float) -> None: """ ``CONFigure[:LTE]:OOPower:NFRames`` \n Snippet: ``driver.applications.k10Xlte.configure.lte.ooPower.nframes.set(frames = 1.0)`` \n Defines the number of frames that are analyzed for On/Off Power measurements. :param frames: numeric value """ param = Conversions.decimal_value_to_str(frames) self._core.io.write(f'CONFigure:LTE:OOPower:NFRames {param}')
[docs] def get(self) -> float: """ ``CONFigure[:LTE]:OOPower:NFRames`` \n Snippet: ``value: float = driver.applications.k10Xlte.configure.lte.ooPower.nframes.get()`` \n Defines the number of frames that are analyzed for On/Off Power measurements. :return: frames: numeric value """ response = self._core.io.query_str(f'CONFigure:LTE:OOPower:NFRames?') return Conversions.str_to_float(response)