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

com.github.pires.obd.commands.pressure.BarometricPressureCommand Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
package com.github.pires.obd.commands.pressure;

import com.github.pires.obd.enums.AvailableCommandNames;

/**
 * Barometric pressure.
 */
public class BarometricPressureCommand extends PressureCommand {

    public BarometricPressureCommand() {
        super("01 33");
    }

    /**
     * @param other a {@link PressureCommand} object.
     */
    public BarometricPressureCommand(PressureCommand other) {
        super(other);
    }

    @Override
    public String getName() {
        return AvailableCommandNames.BAROMETRIC_PRESSURE.getValue();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy