com.github.pires.obd.commands.protocol.ObdWarmstartCommand Maven / Gradle / Ivy
package com.github.pires.obd.commands.protocol;
/**
* Warm-start the OBD connection.
*/
public class ObdWarmstartCommand extends ObdProtocolCommand {
public ObdWarmstartCommand() {
super("AT WS");
}
/**
* @param other a {@link ObdWarmstartCommand} object.
*/
public ObdWarmstartCommand(ObdWarmstartCommand other) {
super(other);
}
@Override
public String getFormattedResult() {
return getResult();
}
@Override
public String getName() {
return "Warmstart OBD";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy