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-examples Show documentation
Show all versions of openxc-examples Show documentation
Example Vehicle Dashboard application using OpenXC
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy