Time

SCPI Command :

SYSTem:TIME
class TimeCls[source]

Time commands group definition. 10 total commands, 4 Subgroups, 1 group commands

class TimeStruct[source]

Response structure. Fields:

  • Hour: int: No parameter help available

  • Min_Py: int: No parameter help available

  • Sec: int: No parameter help available

get() TimeStruct[source]
# SCPI: SYSTem:TIME
value: TimeStruct = driver.system.time.get()

No command help available

return:

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

set(hour: int, min_py: int, sec: int) None[source]
# SCPI: SYSTem:TIME
driver.system.time.set(hour = 1, min_py = 1, sec = 1)

No command help available

param hour:

No help available

param min_py:

No help available

param sec:

No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.system.time.clone()

Subgroups