com.github.pires.obd.commands.protocol.LineFeedOffCommand 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;
/**
* 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