com.github.pires.obd.commands.protocol.AvailablePidsCommand_41_60 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.protocol;
import com.github.pires.obd.enums.AvailableCommandNames;
/**
* Retrieve available PIDs ranging from 41 to 60.
*
* @author pires
* @version $Id: $Id
*/
public class AvailablePidsCommand_41_60 extends AvailablePidsCommand {
/**
* Default ctor.
*/
public AvailablePidsCommand_41_60() {
super("01 40");
}
/**
* Copy ctor.
*
* @param other a {@link com.github.pires.obd.commands.protocol.AvailablePidsCommand} object.
*/
public AvailablePidsCommand_41_60(AvailablePidsCommand_41_60 other) {
super(other);
}
/** {@inheritDoc} */
@Override
public String getName() {
return AvailableCommandNames.PIDS_41_60.getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy