Date
SCPI Command :
[SOURce<HW>]:BB:LRWPan:TRIGger:TIME:DATE
- Commands in total: 1Subgroups: 0Direct child commands: 1
- class DateStruct[source]
Response structure. Fields:
1 Year: int: integer Range: 1980 to 9999
2 Month: int: integer Range: 1 to 12
3 Day: int: integer Range: 1 to 31
- get() DateStruct[source]
# [SOURce<HW>]:BB:LRWPan:TRIGger:TIME:DATE value: DateStruct = driver.source.bb.lrWpan.trigger.time.date.get()
Sets the date for a time-based trigger signal. For trigger modes single or armed auto, you can activate triggering at this date via the following command: SOURce<hw>:BB:<DigStd>:TRIGger:TIME:STATe <DigStd> is the mnemonic for the digital standard, for example, ARB. Time-based triggering behaves analogously for all digital standards that support this feature.
- Returns:
structure: for return value, see the help for DateStruct structure arguments.
- set(year: int, month: int, day: int) None[source]
# [SOURce<HW>]:BB:LRWPan:TRIGger:TIME:DATE driver.source.bb.lrWpan.trigger.time.date.set(year = 1, month = 1, day = 1)
Sets the date for a time-based trigger signal. For trigger modes single or armed auto, you can activate triggering at this date via the following command: SOURce<hw>:BB:<DigStd>:TRIGger:TIME:STATe <DigStd> is the mnemonic for the digital standard, for example, ARB. Time-based triggering behaves analogously for all digital standards that support this feature.
- Parameters:
year – integer Range: 1980 to 9999
month – integer Range: 1 to 12
day – integer Range: 1 to 31