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

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

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

/**
 * Turn-off echo.
 */
public class EchoOffCommand extends ObdProtocolCommand {

    public EchoOffCommand() {
        super("AT E0");
    }

    /**
     * 

Constructor for EchoOffCommand.

* * @param other a {@link EchoOffCommand} object. */ public EchoOffCommand(EchoOffCommand other) { super(other); } @Override public String getFormattedResult() { return getResult(); } @Override public String getName() { return "Echo Off"; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy