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