Time
SCPI Command :
[SOURce<HW>]:BB:GNSS:TIME:STARt:TIME
- Commands in total: 1Subgroups: 0Direct 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: float: float Range: 0 to 59.999
- get() TimeStruct[source]
# [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.
- Returns:
structure: for return value, see the help for TimeStruct structure arguments.
- set(hour: int, minute: int, second: float) None[source]
# [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.
- Parameters:
hour – integer Range: 0 to 23
minute – integer Range: 0 to 59
second – float Range: 0 to 59.999