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

com.github.pires.obd.commands.temperature.EngineCoolantTemperatureCommand Maven / Gradle / Ivy

package com.github.pires.obd.commands.temperature;

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

/**
 * Engine Coolant Temperature.
 */
public class EngineCoolantTemperatureCommand extends TemperatureCommand {

    /**
     *
     */
    public EngineCoolantTemperatureCommand() {
        super("01 05");
    }

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy