Source code for RsFsw.Implementations.Applications.K60_Transient.Sense.Sweep.Fft.Window.TypePy

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class TypePyCls: """TypePy commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("typePy", core, parent)
[docs] def set(self, color_scheme: enums.FftWindowTypeK60) -> None: """SCPI: [SENSe]:SWEep:FFT:WINDow:TYPE \n Snippet: driver.applications.k60Transient.sense.sweep.fft.window.typePy.set(color_scheme = enums.FftWindowTypeK60.BLACkharris) \n Selects the type of FFT window that you want to use in Real-Time mode. \n :param color_scheme: BLACkharris FLATtop GAUSsian HAMMing HANNing KAISerbessel RECTangular """ param = Conversions.enum_scalar_to_str(color_scheme, enums.FftWindowTypeK60) self._core.io.write(f'SENSe:SWEep:FFT:WINDow:TYPE {param}')
# noinspection PyTypeChecker
[docs] def get(self) -> enums.FftWindowTypeK60: """SCPI: [SENSe]:SWEep:FFT:WINDow:TYPE \n Snippet: value: enums.FftWindowTypeK60 = driver.applications.k60Transient.sense.sweep.fft.window.typePy.get() \n Selects the type of FFT window that you want to use in Real-Time mode. \n :return: color_scheme: No help available""" response = self._core.io.query_str(f'SENSe:SWEep:FFT:WINDow:TYPE?') return Conversions.str_to_scalar_enum(response, enums.FftWindowTypeK60)