com.github.pires.obd.commands.engine.OilTempCommand 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.engine;
import com.github.pires.obd.commands.temperature.TemperatureCommand;
import com.github.pires.obd.enums.AvailableCommandNames;
/**
* Displays the current engine Oil temperature.
*
* @author pires
* @version $Id: $Id
*/
public class OilTempCommand extends TemperatureCommand {
/**
* Default ctor.
*/
public OilTempCommand() {
super("01 5C");
}
/**
* Copy ctor.
*
* @param other a {@link com.github.pires.obd.commands.engine.OilTempCommand} object.
*/
public OilTempCommand(OilTempCommand other) {
super(other);
}
/** {@inheritDoc} */
@Override
public String getName() {
return AvailableCommandNames.ENGINE_OIL_TEMP.getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy