Date

SCPI Commands

SYSTem:DATE
class DateCls[source]

Date commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class DateStruct[source]

Response structure. Fields:

  • Year: float: Sets year of the date.

  • Month: float: Sets month of the date.

  • Day: float: No parameter help available

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

Sets or queries the system date.

return

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

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

Sets or queries the system date.

param year

Sets year of the date.

param month

Sets month of the date.

param day

Sets day of the date.