Date

SCPI Command :

SYSTem:DATE
class DateCls[source]

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

class DateStruct[source]

Response structure. Fields:

  • Year: int: No parameter help available

  • Month: int: No parameter help available

  • Day: int: No parameter help available

get() DateStruct[source]
# SCPI: SYSTem:DATE
value: DateStruct = driver.system.date.get()

No command help available

return:

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

set(year: int, month: int, day: int) None[source]
# SCPI: SYSTem:DATE
driver.system.date.set(year = 1, month = 1, day = 1)

No command help available

param year:

No help available

param month:

No help available

param day:

No help available

Cloning the Group

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

Subgroups