Source code for RsCMPX_Base.Implementations.Sense.Base.Temperature.Operating.Ambient

from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal.Types import DataType
from ......Internal.StructBase import StructBase
from ......Internal.ArgStruct import ArgStruct
from ......Internal.ArgSingleList import ArgSingleList
from ......Internal.ArgSingle import ArgSingle
from ...... import enums


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class AmbientCls: """Ambient commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("ambient", core, parent) # noinspection PyTypeChecker
[docs] class GetStruct(StructBase): """Response structure. Fields: \n - Temperature: float: Temperature in degree Celsius - Timestamp: str: Uptime of the session, as 'days-hours-minutes-seconds' - Box: str: Identifies the instrument in a setup with several connected instruments (for future use)""" __meta_args_list = [ ArgStruct.scalar_float('Temperature'), ArgStruct.scalar_str('Timestamp'), ArgStruct.scalar_str('Box')] def __init__(self): StructBase.__init__(self, self) self.Temperature: float = None self.Timestamp: str = None self.Box: str = None
[docs] def get(self, all_py: enums.All = None) -> GetStruct: """SCPI: SENSe:BASE:TEMPerature:OPERating:AMBient \n Snippet: value: GetStruct = driver.sense.base.temperature.operating.ambient.get(all_py = enums.All.ALL) \n Queries the ambient temperature measured via a sensor in the instrument. Ambient temperatures reported by self-tests are also measured via this sensor. \n :param all_py: For future use :return: structure: for return value, see the help for GetStruct structure arguments.""" param = ArgSingleList().compose_cmd_string(ArgSingle('all_py', all_py, DataType.Enum, enums.All, is_optional=True)) return self._core.io.query_struct(f'SENSe:BASE:TEMPerature:OPERating:AMBient? {param}'.rstrip(), self.__class__.GetStruct())