Time
SCPI Command :
[SOURce<HW>]:BB:GNSS:TIME:STARt: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: float: float Range: 0 to 59.999
- get() TimeStruct [source]
# SCPI: [SOURce<HW>]:BB:GNSS:TIME:STARt:TIME value: TimeStruct = driver.source.bb.gnss.time.start.time.get()
If the time base is UTC, sets the simulation start time in UTC time format.
- return
structure: for return value, see the help for TimeStruct structure arguments.
- set(hour: int, minute: int, second: float) None [source]
# SCPI: [SOURce<HW>]:BB:GNSS:TIME:STARt:TIME driver.source.bb.gnss.time.start.time.set(hour = 1, minute = 1, second = 1.0)
If the time base is UTC, sets the simulation start time in UTC time format.
- param hour
integer Range: 0 to 23
- param minute
integer Range: 0 to 59
- param second
float Range: 0 to 59.999