com.github.pires.obd.commands.protocol.EchoOffCommand 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;
/**
* 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 - 2025 Weber Informatics LLC | Privacy Policy