beautypg.com

KEPCO KLR Series Developers Guide User Manual

Page 35

background image

KLR-DEV 060713

3-13

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