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

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

package com.github.pires.obd.commands.protocol;

/**
 * This class allows for an unspecified command to be sent.
 *
 * @author pires
 * @version $Id: $Id
 */
public class ObdRawCommand extends ObdProtocolCommand {

    /**
     * 

Constructor for ObdRawCommand.

* * @param command a {@link java.lang.String} object. */ public ObdRawCommand( String command) { super(command); } /** {@inheritDoc} */ @Override public String getFormattedResult() { return getResult(); } /** {@inheritDoc} */ @Override public String getName() { return "Custom command " + getCommandPID(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy