beautypg.com

KEPCO KLP Series Developers Guide, Rev 3 User Manual

Page 36

background image

3-14

KLP-DEV 041213

Using the pointers it becomes very easy to set voltage and current. Each parameter is simply
loaded with the value to be set using individual statements.

' set voltage level
outputPtr.VoltageLevel 75

' enable OV protection and set OV level
protectionPtr.ConfigureOVP 15


' set current level
outputPtr.CurrentLimit 10

' enable the output
outputPtr.Enabled = True

Measuring the output is performed by accessing a function and not a parameter.

' Measure the voltage
Dim measVoltage As Double
measVoltage = measurementPtr.Measure(KepcoDCPwrMeasurementVoltage)

Closing the driver is the last step in any program:

driver.Close