com.github.pires.obd.commands.temperature.AirIntakeTemperatureCommand 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.temperature;
import com.github.pires.obd.enums.AvailableCommandNames;
/**
* Temperature of intake air.
*/
public class AirIntakeTemperatureCommand extends TemperatureCommand {
public AirIntakeTemperatureCommand() {
super("01 0F");
}
/**
* @param other a {@link AirIntakeTemperatureCommand} object.
*/
public AirIntakeTemperatureCommand(AirIntakeTemperatureCommand other) {
super(other);
}
@Override
public String getName() {
return AvailableCommandNames.AIR_INTAKE_TEMP.getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy