Hack An ELM327 Cable To Make An Arduino OBD2 Scann
Hack An ELM327 Cable To Make An Arduino OBD2 Scann
Hack An ELM327 Cable To Make An Arduino OBD2 Scann
Table of Contents
Step 1: Prepare the ELM327 board to bypass the USB bridge chip . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
Step 3: .................................................................................................................. 6
Related Instructables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
Advertisements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
Comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
http://www.instructables.com/id/Hack-an-ELM327-Cable-to-make-an-Arduino-OBD2-Scann/
Intro: Hack an ELM327 Cable to make an Arduino OBD2 Scanner
In my previous instructable i created an OBD2 Simulator so that i didn't have to test my Arduino OBD2 Reader in the car the whole time but instead in the comfort of my
own home.
Arduino UNO
LCD shield
Coolant Temp,IAT Temp,Ambient Temp, Throttle %,RPM,Vehicle Speed, Air flow Rate,Barometric Pressure
I will be removing the board from the ELM327 Enclosure and then bypass the USB bridge chip and attach the Serial TX/RX pins of the arduino to the Serial TX/RX pins
onto the ELM327 board, program the arduino and attach the ELM327 OBD2 connector to the OBD2 port .
Pretty Simple
Step 1: Prepare the ELM327 board to bypass the USB bridge chip
Start by removing the sticker on ELM327 Cable's Enclosure, remove the 4 screws with a smallish star screwdriver.
Tip:Borrow your Girlfrien's/Wife's cutex and make a mark on one side of the connector that runs to the OBD2 Connector, that way when you take it out you will know
which side it goes because it can go in both ways, for this instructable its not needed to remove the mentioned connector though.
Solder 2 wires to the TX and RX pins on the board, in the attached photo's i have included the pin-out information of the USB Bridge chip. Be careful though I managed to
de-solder some components which i could not put back, but luckily it still worked afterwards.
Tip:Program the arduino so that it writes to the serial monitor with some short delays in between, then connect a jumper cable to the TX pin of the arduino and poke
around with the other end on the board to see where you get some serial activity, the surface mounted LED's wil flicker as communication happens, unfortunately this will
not work for the RX side but in the pictures its easy enough to see where I soldered it onto the board.
NOTE:The USB cable is connected to the board with a 4 pin connector, i cut the middle 2 out so that the ELM327 cannot communicate with the PC whilst its connected,
this way it only gets power from my PC's USB port and the serial controller on the board will not be occupied by the PC allowing the Arduino to talk to it
Once done put it back into the box, I just taped it up because In my Jeep the box is in my way and cannot drive it whilst in the driver seat, I will be using the enclosure for
something else.
http://www.instructables.com/id/Hack-an-ELM327-Cable-to-make-an-Arduino-OBD2-Scann/
Step 2: Attach the Arduino LCD Shield to the arduino
Attach the Arduino LCD Shield to the arduino and hook it up to your PC to be programmed.
Below is my Arduino Sketch, I noticed that the formatting messes with the code a bit, I have some more information available related to this build you can also view the
code here.
http://techtinker.co.za/viewtopic.php?f=14&t=17
// include the library code:
#include
//Declare Buttons
int MenuID=0;
http://www.instructables.com/id/Hack-an-ELM327-Cable-to-make-an-Arduino-OBD2-Scann/
void setup()
{
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.setCursor(0, 0);
Bootup();//Simulate Bootup process doesnt have to be here this only makes it look cool
Retry:
lcd.setCursor(0, 0);
lcd.print("Connecting...... ");
lcd.setCursor(0, 1);
lcd.print(" ");
Serial.begin(38400);
delay(500);
//Send a test message to see if the ELM327 Chip is responding
SentMessage = "ATI";
Serial.println("ATI");delay(500);ReadData();
if (BuildINString.substring(1,7)=="ELM327")
{
lcd.setCursor(0, 0);
lcd.print("Welcome... ");
lcd.setCursor(0, 1);
lcd.print("Connection OK ");
delay(1500);
}
else
{
lcd.setCursor(0, 0);
lcd.print("Error ");
lcd.setCursor(0, 1);
lcd.print("No Connection! ");
delay(1500);
goto Retry;
}
delay(1500);
}
void loop() {
int x;
x = analogRead (0);
//Serial.println(x);
lcd.setCursor(10,1);
if (x > 800 and x < 820){lcd.print ("Select ");}
if (x > 620 and x < 630){if (MenuID>0){MenuID--;}delay(250);}//Left
if (x > 400 and x < 415){lcd.print ("Down ");}
if (x > 190 and x < 215){lcd.print ("Up ");}
if (x > -10 and x < 10){if (MenuID<11){MenuID++;}delay(250);} //Right
//if(BuildINString!=""){Serial.print(BuildINString);}
BuildINString.replace(SentMessage,"");
BuildINString.replace(">","");
BuildINString.replace("OK","");
BuildINString.replace("STOPPED","");
BuildINString.replace("SEARCHING","");
BuildINString.replace("NO DATA","");
BuildINString.replace("?","");
BuildINString.replace(",","");
//Serial.print(BuildINString);
http://www.instructables.com/id/Hack-an-ELM327-Cable-to-make-an-Arduino-OBD2-Scann/
DisplayValue = ((A * 256)+B)/4;
DisplayString = String(DisplayValue) + " rpm ";
lcd.setCursor(0, 1);
lcd.print(DisplayString);
}
//Calculate Vehicle speed I.E Returned bytes wil be 41 0C 1B E0
if (SentMessage=="01 0D")
{
WorkingString = BuildINString.substring(7,9);
A = strtol(WorkingString.c_str(),NULL,0);
DisplayValue = A;
DisplayString = String(DisplayValue) + " km/h ";
lcd.setCursor(0, 1);
lcd.print(DisplayString);
}
//Coolant Temp
if (SentMessage=="01 05")
{
WorkingString = BuildINString.substring(7,9);
A = strtol(WorkingString.c_str(),NULL,0);
DisplayValue = A;
DisplayString = String(DisplayValue) + " C ";
lcd.setCursor(0, 1);
lcd.print(DisplayString);
}
//IAT Temp
if (SentMessage=="01 0F")
{
WorkingString = BuildINString.substring(7,9);
A = strtol(WorkingString.c_str(),NULL,0);
DisplayValue = A;
DisplayString = String(DisplayValue) + " C ";
lcd.setCursor(0, 1);
lcd.print(DisplayString);
}
//Ambient Temp
if (SentMessage=="01 46")
{
WorkingString = BuildINString.substring(7,9);
A = strtol(WorkingString.c_str(),NULL,0);
DisplayValue = A;
DisplayString = String(DisplayValue) + " C ";
lcd.setCursor(0, 1);
lcd.print(DisplayString);
}
//Throttle position
if (SentMessage=="01 11")
{
WorkingString = BuildINString.substring(7,9);
A = strtol(WorkingString.c_str(),NULL,0);
DisplayValue = A;
DisplayString = String(DisplayValue) + " % ";
lcd.setCursor(0, 1);
lcd.print(DisplayString);
}
//Barometric pressure
if (SentMessage=="01 33")
{
WorkingString = BuildINString.substring(7,9);
A = strtol(WorkingString.c_str(),NULL,0);
DisplayValue = A;
DisplayString = String(DisplayValue) + " kpa ";
lcd.setCursor(0, 1);
lcd.print(DisplayString);
}
}
void Bootup()
{
lcd.print("WisperChip V2.00 ");
for (int i=0; i <= 5; i++)
{
for (int j=1; j <= 4; j++)// -/|\-
{
http://www.instructables.com/id/Hack-an-ELM327-Cable-to-make-an-Arduino-OBD2-Scann/
if(j==1){lcd.setCursor(0, 1);lcd.print ("-");delay(200);}
if(j==2){lcd.setCursor(0, 1);lcd.print ("/");delay(200);}
if(j==3){lcd.setCursor(0, 1);lcd.print ("|");delay(200);}
if(j==4){lcd.setCursor(0, 1);lcd.print ("\\");delay(200);}
}
}
delay(1000);
}
Step 3:
Once you have programmed the Arduino, make sure the Arduino's TX/RX pins are connected to the TX/RX pins on the ELM327 board.
The Code ensures that its able to talk to the ELM327 Chip by sending a command "ATI" the ELM327 chip will respond with ELM327, if it doesn't the LCD will print "Error,
No Connection" if it worked it will welcome you wuth a welcome message on the LCD.
From there you simply press the left and right buttons to cycle through the menus currently it will only read.
Coolant Temp,IAT Temp,Ambient Temp, Throttle %,RPM,Vehicle Speed, Air flow Rate,Barometric Pressure
You can add more if you like and change the menu to your liking
See Wiki http://en.wikipedia.org/wiki/OBD-II_PIDs for more PID's that you can add there are quite a few.
You can use a cellphone cradle that you stuck agains the window to hold it and use a USB cellphone charger to power the Arduino, The ELM327 will be powered by the
OBD port on Pin 16 which is positive and PIN4/5 which is negative.
If you get stuck feel free to check out on this forum http://techtinker.co.za/viewforum.php?f=14 you may also contact me if you have questions.
Good Luckl!
http://www.instructables.com/id/Hack-an-ELM327-Cable-to-make-an-Arduino-OBD2-Scann/
Related Instructables
Advertisements
Comments
1 comments Add Comment
http://www.instructables.com/id/Hack-an-ELM327-Cable-to-make-an-Arduino-OBD2-Scann/