Property (Read-Write)
SCPI.SYSTem.DATE = Data
Data = SCPI.SYSTem.DATE
This command sets/gets the date of the clock built in the E5072A.
Parameter |
Data |
Description |
Indicates 3-element array data (date of the built-in clock).
The index of the array starts from 0. |
Data type |
Variant type (Variant) |
Range |
|
Resolution |
1 |
Note |
If the specified variable is out of the allowable setup range, the minimum value (if the lower limit of the range is not reached) or the maximum value (if the upper limit of the range is exceeded) is set. |
Dim Day As Variant
SCPI.SYSTem.DATE = Array(2011,11,11)
Day = SCPI.SYSTem.DATE
Dim Day(2) As Variant
Dim Ref As Variant
Day(0) = 2011
Day(1) = 11
Day(2) = 11
SCPI.SYSTem.DATE = Day
Ref = SCPI.SYSTem.DATE
System > Misc Setup > Clock Setup > Set Date and Time
:SYSTem:DATE <numeric 1>,<numeric 2>,<numeric 3>
:SYSTem:DATE?
{numeric 1},{numeric 2},{numeric 3}<newline><^END>
10 OUTPUT 717;":SYST:DATE 2011,11,11"
20 OUTPUT 717;":SYST:DATE?"
30 ENTER 717;A,B,C