[docs]classDaysCls:"""Days commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""def__init__(self,core:Core,parent):self._core=coreself._cmd_group=CommandsGroup("days",core,parent)# noinspection PyTypeChecker
[docs]defset(self,structure:DaysStruct)->None:"""SCPI: CALibration:DUE:DAYS \n Snippet with structure: \n structure = driver.calibration.due.days.DaysStruct() \n structure.Day_1: enums.DaysOfWeek = enums.DaysOfWeek.ALL \n structure.Day_2: enums.DaysOfWeek = enums.DaysOfWeek.ALL \n structure.Day_3: enums.DaysOfWeek = enums.DaysOfWeek.ALL \n structure.Day_4: enums.DaysOfWeek = enums.DaysOfWeek.ALL \n structure.Day_5: enums.DaysOfWeek = enums.DaysOfWeek.ALL \n structure.Day_6: enums.DaysOfWeek = enums.DaysOfWeek.ALL \n structure.Day_7: enums.DaysOfWeek = enums.DaysOfWeek.ALL \n driver.calibration.due.days.set(structure) \n Defines the days on which a self-alignment is scheduled for method RsFsw.Calibration.Due.Schedule.set ON. Up to 7 different days can be scheduled. \n :param structure: for set value, see the help for DaysStruct structure arguments. """self._core.io.write_struct(f'CALibration:DUE:DAYS',structure)
[docs]defget(self)->DaysStruct:"""SCPI: CALibration:DUE:DAYS \n Snippet: value: DaysStruct = driver.calibration.due.days.get() \n Defines the days on which a self-alignment is scheduled for method RsFsw.Calibration.Due.Schedule.set ON. Up to 7 different days can be scheduled. \n :return: structure: for return value, see the help for DaysStruct structure arguments."""returnself._core.io.query_struct(f'CALibration:DUE:DAYS?',self.__class__.DaysStruct())