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.
 */
public class LoadCommand extends PercentageObdCommand {

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

    /**
     * 

Constructor for LoadCommand.

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy