Source code for RsFsw.Implementations.Applications.K18_AmplifierEt.Configure.Generator.Segment.LedState

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


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

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

	# noinspection PyTypeChecker
[docs] def get(self) -> enums.LedState: """ ``CONFigure:GENerator:SEGMent:LEDState`` \n Snippet: ``value: enums.LedState = driver.applications.k18AmplifierEt.configure.generator.segment.ledState.get()`` \n This command queries if the proper segment of a multi waveform has been selected. :return: state: GREen The desired segment has been selected. GREY Unknown segment selection state. RED The desired segment has not been selected. """ response = self._core.io.query_str(f'CONFigure:GENerator:SEGMent:LEDState?') return Conversions.str_to_scalar_enum(response, enums.LedState)