com.github.pires.obd.commands.engine.ThrottlePositionCommand 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.PercentageObdCommand;
import com.github.pires.obd.enums.AvailableCommandNames;
/**
* Read the throttle position in percentage.
*
* @author pires
* @version $Id: $Id
*/
public class ThrottlePositionCommand extends PercentageObdCommand {
/**
* Default ctor.
*/
public ThrottlePositionCommand() {
super("01 11");
}
/**
* Copy ctor.
*
* @param other a {@link com.github.pires.obd.commands.engine.ThrottlePositionCommand} object.
*/
public ThrottlePositionCommand(ThrottlePositionCommand other) {
super(other);
}
/** {@inheritDoc} */
@Override
public String getName() {
return AvailableCommandNames.THROTTLE_POS.getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy