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

com.github.pires.obd.commands.temperature.AmbientAirTemperatureCommand 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;

/**
 * Ambient Air Temperature.
 *
 * @author pires
 * @version $Id: $Id
 */
public class AmbientAirTemperatureCommand extends TemperatureCommand {

    /**
     * 

Constructor for AmbientAirTemperatureCommand.

*/ public AmbientAirTemperatureCommand() { super("01 46"); } /** *

Constructor for AmbientAirTemperatureCommand.

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy