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.
 */
public class HeadersOffCommand extends ObdProtocolCommand {

    public HeadersOffCommand() {
        super("ATH0");
    }

    /**
     * 

Constructor for HeadersOffCommand.

* * @param other a {@link HeadersOffCommand} object. */ public HeadersOffCommand(HeadersOffCommand other) { super(other); } @Override public String getFormattedResult() { return getResult(); } @Override public String getName() { return "Headers disabled"; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy