The COM objects provided for the E5071C are structured hierarchically as shown below.
The Application objects are at the top of the hierarchy of the E5071C COM object model. They consist of 7 objects dedicated to the COM interface and SCPI objects corresponding to SCPI commands.
The SCPI objects are created to realize the SCPI commands of the E5071C with the COM interface.
The conversion rules from the SCPI commands when writing SCPI object messages are as follows:
SCPI. must be at the beginning. Notice that the IEEE common commands start with SCPI.IEEE4882. and "*" is omitted.
Replace colons (:) used as the hierarchical separator symbol with dots (.).
The number written in the object message is specified with ( ).
You cannot omit the command message in the syntax.
SCPI command |
COM object |
OUTPUT 717;":SOUR1:POW -10" |
SCPI.SOURce(1).POWer.LEVel.IMMediate.AMPLitude = -10 |
OUTPUT 717;":SENS1:CORR:COLL:METH:TYPE?" |
A = SCPI.SENSe(1).CORRection.COLLect.METHod:TYPE |
OUTPUT 717;"*CLS" |
SCPI.IEEE4882.CLS |