com.github.pires.obd.commands.pressure.BarometricPressureCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obd-java-api Show documentation
Show all versions of obd-java-api Show documentation
OBD Java API compatible with ELM327.
package com.github.pires.obd.commands.pressure;
import com.github.pires.obd.enums.AvailableCommandNames;
/**
* Barometric pressure.
*
* @author pires
* @version $Id: $Id
*/
public class BarometricPressureCommand extends PressureCommand {
/**
* Constructor for BarometricPressureCommand.
*/
public BarometricPressureCommand() {
super("01 33");
}
/**
* Constructor for BarometricPressureCommand.
*
* @param other a {@link com.github.pires.obd.commands.pressure.PressureCommand} object.
*/
public BarometricPressureCommand(PressureCommand other) {
super(other);
}
/** {@inheritDoc} */
@Override
public String getName() {
return AvailableCommandNames.BAROMETRIC_PRESSURE.getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy