Time

SCPI Command :

[SOURce<HW>]:BB:LRWPan:TRIGger:TIME:TIME
Commands in total: 1
Subgroups: 0
Direct child commands: 1
class TimeStruct[source]

Response structure. Fields:

  • 1 Hour: int: integer Range: 0 to 23

  • 2 Minute: int: integer Range: 0 to 59

  • 3 Second: int: integer Range: 0 to 59

get() TimeStruct[source]
# [SOURce<HW>]:BB:LRWPan:TRIGger:TIME:TIME
value: TimeStruct = driver.source.bb.lrWpan.trigger.time.time.get()

Sets the time for a time-based trigger signal. For trigger modes single or armed auto, you can activate triggering at this time 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 TimeStruct structure arguments.

set(hour: int, minute: int, second: int) None[source]
# [SOURce<HW>]:BB:LRWPan:TRIGger:TIME:TIME
driver.source.bb.lrWpan.trigger.time.time.set(hour = 1, minute = 1, second = 1)

Sets the time for a time-based trigger signal. For trigger modes single or armed auto, you can activate triggering at this time 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:
  • hour – integer Range: 0 to 23

  • minute – integer Range: 0 to 59

  • second – integer Range: 0 to 59