Source code for RsNgx.Implementations.Status.Questionable.Instrument.Isummary.Event

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class EventCls: """Event commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("event", core, parent)
[docs] def get(self, channel=repcap.Channel.Default) -> int: """SCPI: STATus:QUEStionable:INSTrument:ISUMmary<Channel>[:EVENt] \n Snippet: value: int = driver.status.questionable.instrument.isummary.event.get(channel = repcap.Channel.Default) \n Returns the contents of the EVENt part of the status register to check whether an event has occurred since the last reading. Reading an EVENt register deletes its contents. \n :param channel: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Isummary') :return: result: Event bits in decimal representation""" channel_cmd_val = self._cmd_group.get_repcap_cmd_value(channel, repcap.Channel) response = self._core.io.query_str(f'STATus:QUEStionable:INSTrument:ISUMmary{channel_cmd_val}:EVENt?') return Conversions.str_to_int(response)