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

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

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

/**
 * Turns off line-feed.
 */
public class LineFeedOffCommand extends ObdProtocolCommand {

    public LineFeedOffCommand() {
        super("AT L0");
    }

    /**
     * @param other a {@link LineFeedOffCommand} object.
     */
    public LineFeedOffCommand(LineFeedOffCommand other) {
        super(other);
    }

    @Override
    public String getFormattedResult() {
        return getResult();
    }

    @Override
    public String getName() {
        return "Line Feed Off";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy