State

SCPI Command :

[SOURce<HW>]:BB:BTOoth:TRIGger:TIME:[STATe]
class StateCls[source]

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

class StateStruct[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() StateStruct[source]
# SCPI: [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.

return

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

set(hour: int, minute: int, second: int) None[source]
# SCPI: [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.

param hour

integer Range: 0 to 23

param minute

integer Range: 0 to 59

param second

integer Range: 0 to 59