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

com.github.pires.obd.commands.protocol.ObdResetCommand Maven / Gradle / Ivy

package com.github.pires.obd.commands.protocol;

/**
 * Reset the OBD connection.
 */
public class ObdResetCommand extends ObdProtocolCommand {

    public ObdResetCommand() {
        super("AT Z");
    }

    /**
     * @param other a {@link com.github.pires.obd.commands.protocol.ObdResetCommand} object.
     */
    public ObdResetCommand(ObdResetCommand other) {
        super(other);
    }

    @Override
    public String getFormattedResult() {
        return getResult();
    }

    @Override
    public String getName() {
        return "Reset OBD";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy