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

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

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

/**
 * Reset the OBD connection.
 *
 * @author pires
 * @version $Id: $Id
 */
public class ObdResetCommand extends ObdProtocolCommand {

    /**
     * 

Constructor for ObdResetCommand.

*/ public ObdResetCommand() { super("AT Z"); } /** *

Constructor for ObdResetCommand.

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy