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

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

There is a newer version: 1.0
Show newest version
package com.github.pires.obd.commands.protocol;

/**
 * Turn-off echo.
 *
 * @author pires
 * @version $Id: $Id
 */
public class EchoOffCommand extends ObdProtocolCommand {

    /**
     * 

Constructor for EchoOffCommand.

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

Constructor for EchoOffCommand.

* * @param other a {@link com.github.pires.obd.commands.protocol.EchoOffCommand} object. */ public EchoOffCommand(EchoOffCommand other) { super(other); } /** {@inheritDoc} */ @Override public String getFormattedResult() { return getResult(); } /** {@inheritDoc} */ @Override public String getName() { return "Echo Off"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy