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
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class TimeCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("time", core, parent)
[docs]
def set(self, hour: int, minute: int, second: int) -> None:
"""
``[SOURce<HW>]:ILS:TRIGger:TIME:TIME`` \n
Snippet: ``driver.source.ils.trigger.time.time.set(hour = 1, minute = 1, second = 1)`` \n
No help available
"""
param = ArgSingleList().compose_cmd_string(ArgSingle('hour', hour, DataType.Integer), ArgSingle('minute', minute, DataType.Integer), ArgSingle('second', second, DataType.Integer))
self._core.io.write(f'SOURce<HwInstance>:ILS:TRIGger:TIME:TIME {param}'.rstrip())
# noinspection PyTypeChecker
[docs]
class TimeStruct(StructBase):
"""
Response structure. Fields: \n
- 1 Hour: int: No parameter help available
- 2 Minute: int: No parameter help available
- 3 Second: int: No parameter help available
"""
__meta_args_list = [
ArgStruct.scalar_int('Hour'),
ArgStruct.scalar_int('Minute'),
ArgStruct.scalar_int('Second')]
def __init__(self):
StructBase.__init__(self, self)
self.Hour: int = None
self.Minute: int = None
self.Second: int = None
[docs]
def get(self) -> TimeStruct:
"""
``[SOURce<HW>]:ILS:TRIGger:TIME:TIME`` \n
Snippet: ``value: TimeStruct = driver.source.ils.trigger.time.time.get()`` \n
No help available
:return: structure: for return value, see the help for TimeStruct structure arguments.
"""
return self._core.io.query_struct(f'SOURce<HwInstance>:ILS:TRIGger:TIME:TIME?', self.__class__.TimeStruct())