com.openxc.measurements.ParkingBrakeStatus 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 ParkingBrakeStatus measurement knows if the parking brake is engaged or not.
*/
public class ParkingBrakeStatus extends BaseMeasurement {
public final static String ID = "parking_brake_status";
public ParkingBrakeStatus(Boolean value) {
super(value);
}
public ParkingBrakeStatus(java.lang.Boolean value) {
this(new Boolean(value));
}
@Override
public String getGenericName() {
return ID;
}
}