Forum >Problems with the OBDII libraries
Problems with the OBDII libraries

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]
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
AleEscalanteH
how can i print in lcd the mode of the OBD adapter… like if its connected or not

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…
AleEscalanteH
Seri.print does´t work…
