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

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

The newest version!
package com.openxc.measurements;

import com.openxc.units.Boolean;

/**
 * The HighBeamStatus measurement knows if the high beams are on.
 */
public class HighBeamStatus extends BaseMeasurement {
    public final static String ID = "high_beam_status";

    public HighBeamStatus(Boolean value) {
        super(value);
    }

    public HighBeamStatus(java.lang.Boolean value) {
        this(new Boolean(value));
    }

    @Override
    public String getGenericName() {
        return ID;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy