Time

SCPI Commands :

SYSTem:TIME:SOURce
SYSTem:TIME:NTP
class TimeCls[source]

Time commands group definition. 3 total commands, 1 Subgroups, 2 group commands

get_ntp() str[source]
# SCPI: SYSTem:TIME:NTP
value: str = driver.system.time.get_ntp()

No command help available

return:

time_server: No help available

get_source() TimeSource[source]
# SCPI: SYSTem:TIME:SOURce
value: enums.TimeSource = driver.system.time.get_source()

No command help available

return:

time_source: No help available

set_ntp(time_server: str) None[source]
# SCPI: SYSTem:TIME:NTP
driver.system.time.set_ntp(time_server = 'abc')

No command help available

param time_server:

No help available

set_source(time_source: TimeSource) None[source]
# SCPI: SYSTem:TIME:SOURce
driver.system.time.set_source(time_source = enums.TimeSource.MANual)

No command help available

param time_source:

No help available

Cloning the Group

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

Subgroups