Time

SCPI Command :

[SOURce<HW>]:BB:C2K:TRIGger:TIME:TIME
class TimeCls[source]

Time commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class TimeStruct[source]

Response structure. Fields:

  • Hour: int: integer Range: 0 to 23

  • Minute: int: integer Range: 0 to 59

  • Second: int: integer Range: 0 to 59

get() TimeStruct[source]
# SCPI: [SOURce<HW>]:BB:C2K:TRIGger:TIME:TIME
value: TimeStruct = driver.source.bb.c2K.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.

return

structure: for return value, see the help for TimeStruct structure arguments.

set(hour: int, minute: int, second: int) None[source]
# SCPI: [SOURce<HW>]:BB:C2K:TRIGger:TIME:TIME
driver.source.bb.c2K.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.

param hour

integer Range: 0 to 23

param minute

integer Range: 0 to 59

param second

integer Range: 0 to 59