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

com.github.pires.obd.commands.engine.LoadCommand Maven / Gradle / Ivy

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

import com.github.pires.obd.commands.PercentageObdCommand;
import com.github.pires.obd.enums.AvailableCommandNames;

/**
 * Calculated Engine Load value.
 *
 * @author pires
 * @version $Id: $Id
 */
public class LoadCommand extends PercentageObdCommand {

    /**
     * 

Constructor for LoadCommand.

*/ public LoadCommand() { super("01 04"); } /** *

Constructor for LoadCommand.

* * @param other a {@link com.github.pires.obd.commands.engine.LoadCommand} object. */ public LoadCommand(LoadCommand other) { super(other); } /* * (non-Javadoc) * * @see pt.lighthouselabs.obd.commands.ObdCommand#getName() */ /** {@inheritDoc} */ @Override public String getName() { return AvailableCommandNames.ENGINE_LOAD.getValue(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy