[docs]classLedStateCls:"""LedState commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("ledState",core,parent)# noinspection PyTypeChecker
[docs]defget(self)->enums.LedState:"""SCPI: CONFigure:CFReduction:READ:LEDState \n Snippet: value: enums.LedState = driver.applications.k18AmplifierEt.configure.cfReduction.read.ledState.get() \n Reads the LED status of crest factor reduction apply on the connected signal generator. \n :return: state: GREY | RED | GREen"""response=self._core.io.query_str(f'CONFigure:CFReduction:READ:LEDState?')returnConversions.str_to_scalar_enum(response,enums.LedState)