com.openxc.measurements.HeadlampStatus 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 HeadlampStatus measurement knows if the headlamps are off or on.
*/
public class HeadlampStatus extends BaseMeasurement {
public final static String ID = "headlamp_status";
public HeadlampStatus(Boolean value) {
super(value);
}
public HeadlampStatus(java.lang.Boolean value) {
this(new Boolean(value));
}
@Override
public String getGenericName() {
return ID;
}
}