com.github.pires.obd.commands.temperature.EngineCoolantTemperatureCommand 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;
/**
* Engine Coolant Temperature.
*
* @author pires
* @version $Id: $Id
*/
public class EngineCoolantTemperatureCommand extends TemperatureCommand {
/**
* Constructor for EngineCoolantTemperatureCommand.
*/
public EngineCoolantTemperatureCommand() {
super("01 05");
}
/**
* Constructor for EngineCoolantTemperatureCommand.
*
* @param other a {@link com.github.pires.obd.commands.temperature.TemperatureCommand} object.
*/
public EngineCoolantTemperatureCommand(TemperatureCommand other) {
super(other);
}
/** {@inheritDoc} */
@Override
public String getName() {
return AvailableCommandNames.ENGINE_COOLANT_TEMP.getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy