from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]
class LastCls:
"""Last commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("last", core, parent)
[docs]
def get_sensor(self) -> int:
"""SCPI: [SOURce<HW>]:AREGenerator:LAST:SENSor \n
Snippet: value: int = driver.source.areGenerator.last.get_sensor() \n
Queries the last added sensor. Displays the number included in the sensor ID, e.g. '3' for sensor ID S3. \n
:return: areg_last_sensor: No help available
"""
response = self._core.io.query_str('SOURce<HwInstance>:AREGenerator:LAST:SENSor?')
return Conversions.str_to_int(response)