com.acces.aiousb
Class OutputVoltagePoint

java.lang.Object
  extended by com.acces.aiousb.OutputVoltagePoint

public class OutputVoltagePoint
extends java.lang.Object

Class OutputVoltagePoint represents a single analog output data point, consisting of a D/A channel number and a voltage to output to that channel. It is used by method AO16_AnalogOutputSubsystem.writeVolts( OutputVoltagePoint[] points ) to output a series of voltages to multiple D/A channels.


Field Summary
 int channel
          Channel number to output voltage to.
 double volts
          Voltage to output.
 
Constructor Summary
OutputVoltagePoint()
          Default constructor for analog output data point.
OutputVoltagePoint(int channel, double volts)
          Constructor for analog output data point.
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

channel

public int channel
Channel number to output voltage to.


volts

public double volts
Voltage to output.

Constructor Detail

OutputVoltagePoint

public OutputVoltagePoint()
Default constructor for analog output data point.


OutputVoltagePoint

public OutputVoltagePoint(int channel,
                          double volts)
Constructor for analog output data point.

Parameters:
channel - the channel number to output voltage to.
volts - the voltage to output.