Class OutputChannel

java.lang.Object
com.efiAnalytics.plugin.ecu.OutputChannel

public class OutputChannel extends Object
Author:
Phil Tobin
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a new instance of OutputChannel
  • Method Summary

    Modifier and Type
    Method
    Description
    the formula to base an OutputChannel on if it is a formula based OutputChannel
    double
    the maximum expected value for this OutputChannel
    double
    the minimum expected value for this OutputChannel
    returns the OutputChannel name that was defined in the original ecuConfiguration or ini file
    the units for this output channel i.e.
    void
    setFormula(String formula)
    the formula to base an OutputChannel on if it is a formula based OutputChannel
    void
    setMaxValue(double maxValue)
    the maximum expected value for this OutputChannel
    void
    setMinValue(double minValue)
    the minimum expected value for this OutputChannel
    void
    sets the OutputChannel name, must be unique to the ecuConfiguration
    void
    the units for this output channel.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • OutputChannel

      public OutputChannel()
      Creates a new instance of OutputChannel
  • Method Details

    • getName

      public String getName()
      returns the OutputChannel name that was defined in the original ecuConfiguration or ini file
    • setName

      public void setName(String name)
      sets the OutputChannel name, must be unique to the ecuConfiguration
    • getUnits

      public String getUnits()
      the units for this output channel i.e. %, °F, ms. ...
    • setUnits

      public void setUnits(String units)
      the units for this output channel. i.e. %, °F, ms. ...
    • getMinValue

      public double getMinValue()
      the minimum expected value for this OutputChannel
    • setMinValue

      public void setMinValue(double minValue)
      the minimum expected value for this OutputChannel
    • getMaxValue

      public double getMaxValue()
      the maximum expected value for this OutputChannel
    • setMaxValue

      public void setMaxValue(double maxValue)
      the maximum expected value for this OutputChannel
    • getFormula

      public String getFormula()
      the formula to base an OutputChannel on if it is a formula based OutputChannel
    • setFormula

      public void setFormula(String formula)
      the formula to base an OutputChannel on if it is a formula based OutputChannel