com.github.pires.obd.commands.protocol.HeadersOffCommand 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 headers.
*
* @author pires
* @version $Id: $Id
*/
public class HeadersOffCommand extends ObdProtocolCommand {
/**
* Constructor for HeadersOffCommand.
*/
public HeadersOffCommand() {
super("ATH0");
}
/**
* Constructor for HeadersOffCommand.
*
* @param other a {@link com.github.pires.obd.commands.protocol.HeadersOffCommand} object.
*/
public HeadersOffCommand(HeadersOffCommand other) {
super(other);
}
/** {@inheritDoc} */
@Override
public String getFormattedResult() {
return getResult();
}
/** {@inheritDoc} */
@Override
public String getName() {
return "Headers disabled";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy