com.openxc.measurements.HighBeamStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openxc-it Show documentation
Show all versions of openxc-it Show documentation
Instrumentation test suite for OpenXC library
The newest version!
package com.openxc.measurements;
import com.openxc.units.Boolean;
/**
* The HighBeamStatus measurement knows if the high beams are on.
*/
public class HighBeamStatus extends BaseMeasurement {
public final static String ID = "high_beam_status";
public HighBeamStatus(Boolean value) {
super(value);
}
public HighBeamStatus(java.lang.Boolean value) {
this(new Boolean(value));
}
@Override
public String getGenericName() {
return ID;
}
}