com.github.pires.obd.commands.engine.LoadCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obd-java-api Show documentation
Show all versions of obd-java-api Show documentation
OBD Java API compatible with ELM327.
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 - 2025 Weber Informatics LLC | Privacy Policy