com.github.pires.obd.commands.protocol.SpacesOffCommand 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;
/**
* Turn-off spaces.
*/
public class SpacesOffCommand extends ObdProtocolCommand {
public SpacesOffCommand() {
super("ATS0");
}
/**
* Constructor for SpacesOffCommand.
*
* @param other a {@link SpacesOffCommand} object.
*/
public SpacesOffCommand(SpacesOffCommand other) {
super(other);
}
@Override
public String getFormattedResult() {
return getResult();
}
@Override
public String getName() {
return "Spaces Off";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy