Forum >Problems with the OBDII libraries
Telematics General

Problems with the OBDII libraries

userHead Grey.CC 2013-12-09 19:53:55 7556 Views7 Replies
From: AleEscalanteH

There is my error page, it pop out when i paste the code in arduinodev.
hope you can help me..

#include <OBD.h>

COBD obd; /* for Model A (UART version) */

void setup()
{
// we'll use the debug LED as output
pinMode(13, OUTPUT);
// start communication with OBD-II adapter
obd.begin();
// initiate OBD-II connection until success
while (!obd.init());
}

void loop()
{
int value;
// save engine RPM in variable 'value', return true on success
if (obd.read(PID_RPM, value)) {
// light on LED on Arduino board when the RPM exceeds 3000
digitalWrite(13, value > 3000 ? HIGH : LOW);
}
}

[img]
2014-01-21 12:56:57 Hi stan.. thanks for all your help..
how can i print in lcd the mode of the OBD adapter… like if its connected or not
userHeadPic AleEscalanteH
2013-12-24 08:44:36 ok, but how can i see the values form PID's in numbers ? userHeadPic AleEscalanteH
2013-12-22 12:38:24 Thanks! it work.. now i can make a led blink but… how can i get the exact value from one of the PIDs?
Seri.print does´t work…
userHeadPic AleEscalanteH
2013-12-20 16:55:47 Nope userHeadPic AleEscalanteH
2013-12-17 05:33:17 Yes, in the photo that i post you can see the 3 includes… userHeadPic AleEscalanteH
2013-12-16 08:47:45 Now this
thanks for your help
userHeadPic AleEscalanteH
2013-12-15 10:13:20 Now this appear

userHeadPic AleEscalanteH