Exemple #1
0
 /**
  * Set the maximum scaled value for the sensor
  *
  * @param val the maximum scaled value
  */
 public void setScaledMaxVal(int val) {
   scaledGauge.setMaxVal(val);
 }
Exemple #2
0
 /**
  * Set the maximum raw value
  *
  * @param val the maximum raw value
  */
 public void setRawMaxVal(int val) {
   rawGauge.setMaxVal(val);
 }
Exemple #3
0
 /**
  * Set the scaled value of the sensor
  *
  * @param val the scaled value
  */
 public void setScaledVal(int val) {
   scaledGauge.setVal(val);
 }
Exemple #4
0
 /**
  * Set the raw value of the sensor
  *
  * @param val the raw value
  */
 public void setRawVal(int val) {
   rawGauge.setVal(val);
 }