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

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

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

/**
 * Warm-start the OBD connection.
 *
 * @author pires
 * @version $Id: $Id
 */
public class ObdWarmstartCommand extends ObdProtocolCommand {

    /**
     * 

Constructor for ObdWarmstartCommand.

*/ public ObdWarmstartCommand() { super("AT WS"); } /** *

Constructor for ObdWarmstartCommand.

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy