com.github.pires.obd.commands.control.TimingAdvanceCommand 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.control;
import com.github.pires.obd.commands.PercentageObdCommand;
import com.github.pires.obd.enums.AvailableCommandNames;
/**
* Timing Advance
*/
public class TimingAdvanceCommand extends PercentageObdCommand {
public TimingAdvanceCommand() {
super("01 0E");
}
/**
* @param other a {@link TimingAdvanceCommand} object.
*/
public TimingAdvanceCommand(TimingAdvanceCommand other) {
super(other);
}
@Override
public String getName() {
return AvailableCommandNames.TIMING_ADVANCE.getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy