com.github.pires.obd.commands.protocol.ResetTroubleCodesCommand 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.protocol;
import com.github.pires.obd.commands.ObdCommand;
/**
* Reset trouble codes.
*/
public class ResetTroubleCodesCommand extends ObdCommand {
public ResetTroubleCodesCommand() {
super("04");
}
@Override
protected void performCalculations() {
}
@Override
public String getFormattedResult() {
return getResult();
}
@Override
public String getCalculatedResult() {
return getResult();
}
@Override
public String getName() {
return getResult();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy