All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.openxc.measurements.ParkingBrakeStatus Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy