Is there a simple way to make a Java program to read data from an OBDII v2.1 device (ELM 327) and specifically print the data human readable in screen.
For example:
public class OBDIIReader {
public static void main(String[] args) {
//
// Connecting to
// the OBDII via BT to
// the Raspeberry Pi
//
while(true) {
System.out.println(Read.speed);
System.out.println(Read.rpm);
System.out.println(Read.engineTemp);
}
}
}