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

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

There is a newer version: 1.0
Show newest version
package com.github.pires.obd.commands.temperature;

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

/**
 * Temperature of intake air.
 *
 * @author pires
 * @version $Id: $Id
 */
public class AirIntakeTemperatureCommand extends TemperatureCommand {

    /**
     * 

Constructor for AirIntakeTemperatureCommand.

*/ public AirIntakeTemperatureCommand() { super("01 0F"); } /** *

Constructor for AirIntakeTemperatureCommand.

* * @param other a {@link com.github.pires.obd.commands.temperature.AirIntakeTemperatureCommand} object. */ public AirIntakeTemperatureCommand(AirIntakeTemperatureCommand other) { super(other); } /** {@inheritDoc} */ @Override public String getName() { return AvailableCommandNames.AIR_INTAKE_TEMP.getValue(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy