/** * Set the scaled value of the sensor * * @param val the scaled value */ public void setScaledVal(int val) { scaledGauge.setVal(val); }
/** * Set the raw value of the sensor * * @param val the raw value */ public void setRawVal(int val) { rawGauge.setVal(val); }