Class I2COutput

java.lang.Object
org.wildstang.framework.io.outputs.Output
org.wildstang.framework.io.outputs.I2COutput
Direct Known Subclasses:
WsI2COutput

public abstract class I2COutput extends Output
First abstraction of Output representing I2C Outputs. Currently there are no implementations of this type.
  • Constructor Details

    • I2COutput

      public I2COutput(String p_name)
      Constructor simply passes on name.
      Parameters:
      p_name - Name of the Output.
  • Method Details

    • getValue

      public byte[] getValue()
      Returns the latest commanded value for the Output.
      Returns:
      Latest value stored in the Output.
    • setValue

      public void setValue(byte[] p_value)
      Sets the output value, doesn't command the hardware.
      Parameters:
      p_value - New value for the Output.