State
SCPI Command :
[SOURce<HW>]:BB:BTOoth:TRIGger:TIME:[STATe]
- Commands in total: 1Subgroups: 0Direct child commands: 1
- class StateStruct[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() StateStruct[source]
# [SOURce<HW>]:BB:BTOoth:TRIGger:TIME:[STATe] value: StateStruct = driver.source.bb.btooth.trigger.time.state.get()
Activates time-based triggering with a fixed time reference. If activated, the R&S SMBV100B triggers signal generation when its operating system time matches a specified time. Specify the trigger date and trigger time with the following commands: SOURce<hw>:BB:<DigStd>:TRIGger:TIME:DATE SOURce<hw>:BB:<DigStd>:TRIGger:TIME:TIME <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 StateStruct structure arguments.
- set(hour: int, minute: int, second: int) None[source]
# [SOURce<HW>]:BB:BTOoth:TRIGger:TIME:[STATe] driver.source.bb.btooth.trigger.time.state.set(hour = 1, minute = 1, second = 1)
Activates time-based triggering with a fixed time reference. If activated, the R&S SMBV100B triggers signal generation when its operating system time matches a specified time. Specify the trigger date and trigger time with the following commands: SOURce<hw>:BB:<DigStd>:TRIGger:TIME:DATE SOURce<hw>:BB:<DigStd>:TRIGger:TIME:TIME <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