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

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

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 - 2024 Weber Informatics LLC | Privacy Policy