com.github.pires.obd.commands.temperature.AmbientAirTemperatureCommand 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;
/**
* 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 - 2025 Weber Informatics LLC | Privacy Policy