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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy