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.
 *
 * @author pires
 * @version $Id: $Id
 */
public class LineFeedOffCommand extends ObdProtocolCommand {

    /**
     * 

Constructor for LineFeedOffCommand.

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

Constructor for LineFeedOffCommand.

* * @param other a {@link com.github.pires.obd.commands.protocol.LineFeedOffCommand} object. */ public LineFeedOffCommand(LineFeedOffCommand other) { super(other); } /** {@inheritDoc} */ @Override public String getFormattedResult() { return getResult(); } /** {@inheritDoc} */ @Override public String getName() { return "Line Feed Off"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy