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

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

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

/**
 * This class allows for an unspecified command to be sent.
 */
public class OdbRawCommand extends ObdProtocolCommand {

    /**
     * @param command a {@link java.lang.String} object.
     */
    public OdbRawCommand(String command) {
        super(command);
    }

    @Override
    public String getFormattedResult() {
        return getResult();
    }

    @Override
    public String getName() {
        return "Custom command " + getName();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy