From 5c4300402d931b2cb53db7214877d9b7e69a8416 Mon Sep 17 00:00:00 2001 From: Stanley Huang Date: Fri, 29 Nov 2013 23:13:36 +1100 Subject: update OBD-II library --- libraries/OBD/OBD.cpp | 4 +-- libraries/OBD/OBD.h | 4 +-- libraries/OBD/examples/rpm_led/rpm_led.ino | 36 ---------------------- libraries/OBD/examples/rpm_led_i2c/rpm_led_i2c.ino | 31 +++++++++++++++++++ .../OBD/examples/rpm_led_uart/rpm_led_uart.ino | 30 ++++++++++++++++++ 5 files changed, 65 insertions(+), 40 deletions(-) delete mode 100644 libraries/OBD/examples/rpm_led/rpm_led.ino create mode 100644 libraries/OBD/examples/rpm_led_i2c/rpm_led_i2c.ino create mode 100644 libraries/OBD/examples/rpm_led_uart/rpm_led_uart.ino (limited to 'libraries/OBD') diff --git a/libraries/OBD/OBD.cpp b/libraries/OBD/OBD.cpp index 5dcf903..3360d07 100644 --- a/libraries/OBD/OBD.cpp +++ b/libraries/OBD/OBD.cpp @@ -75,7 +75,7 @@ void COBD::sendQuery(unsigned char pid) write(cmd); } -bool COBD::readSensor(byte pid, int& result, bool passive) +bool COBD::read(byte pid, int& result, bool passive) { // send a query command sendQuery(pid); @@ -341,7 +341,7 @@ bool COBDI2C::init() } } -bool COBDI2C::readSensor(byte pid, int& result, bool passive) +bool COBDI2C::read(byte pid, int& result, bool passive) { uint32_t t = millis(); sendQuery(pid); diff --git a/libraries/OBD/OBD.h b/libraries/OBD/OBD.h index f64ea35..93856d6 100644 --- a/libraries/OBD/OBD.h +++ b/libraries/OBD/OBD.h @@ -50,7 +50,7 @@ public: COBD():dataMode(1),errors(0),m_state(OBD_DISCONNECTED) {} virtual void begin(); virtual bool init(bool passive = false); - virtual bool readSensor(byte pid, int& result, bool passive = false); + virtual bool read(byte pid, int& result, bool passive = false); virtual void sleep(int seconds); // Query and GetResponse for advanced usage only virtual void sendQuery(byte pid); @@ -118,7 +118,7 @@ class COBDI2C : public COBD { public: void begin(byte addr = I2C_ADDR); bool init(); - bool readSensor(byte pid, int& result, bool passive = false); + bool read(byte pid, int& result, bool passive = false); void write(char* s); // Bluetooth communication API bool btInit(uint16_t baudrate = 9600); diff --git a/libraries/OBD/examples/rpm_led/rpm_led.ino b/libraries/OBD/examples/rpm_led/rpm_led.ino deleted file mode 100644 index 630336c..0000000 --- a/libraries/OBD/examples/rpm_led/rpm_led.ino +++ /dev/null @@ -1,36 +0,0 @@ -/************************************************************************* -* Sample sketch based on OBD-II library for Arduino -* Distributed under GPL v2.0 -* Copyright (c) 2012-2013 Stanley Huang -* All rights reserved. -*************************************************************************/ - -#include -#include -#include - -// OBD-II UART Adapter -COBD obd; - -// OBD-II I2C Adapter -//COBDI2C obd; - -void setup() -{ - // we'll use the debug LED as output - pinMode(13, OUTPUT); - // start communication with OBD-II UART adapter - obd.begin(); - // initiate OBD-II connection until success - while (!obd.init()); -} - -void loop() -{ - int value; - if (obd.readSensor(PID_RPM, value)) { - // RPM is read and stored in 'value' - // light on LED when RPM exceeds 5000 - digitalWrite(13, value > 5000 ? HIGH : LOW); - } -} diff --git a/libraries/OBD/examples/rpm_led_i2c/rpm_led_i2c.ino b/libraries/OBD/examples/rpm_led_i2c/rpm_led_i2c.ino new file mode 100644 index 0000000..c80eba9 --- /dev/null +++ b/libraries/OBD/examples/rpm_led_i2c/rpm_led_i2c.ino @@ -0,0 +1,31 @@ +/************************************************************************* +* Sample sketch based on OBD-II library for Arduino +* Distributed under GPL v2.0 +* Copyright (c) 2012-2013 Stanley Huang +* All rights reserved. +*************************************************************************/ + +#include +#include + +COBDI2C obd; + +void setup() +{ + // we'll use the debug LED as output + pinMode(13, OUTPUT); + // start communication with OBD-II UART adapter + obd.begin(); + // initiate OBD-II connection until success + while (!obd.init()); +} + +void loop() +{ + int value; + if (obd.read(PID_RPM, value)) { + // RPM is successfully read and its value stored in variable 'value' + // light on LED when RPM exceeds 3000 + digitalWrite(13, value > 3000 ? HIGH : LOW); + } +} diff --git a/libraries/OBD/examples/rpm_led_uart/rpm_led_uart.ino b/libraries/OBD/examples/rpm_led_uart/rpm_led_uart.ino new file mode 100644 index 0000000..8a2ae42 --- /dev/null +++ b/libraries/OBD/examples/rpm_led_uart/rpm_led_uart.ino @@ -0,0 +1,30 @@ +/************************************************************************* +* Sample sketch based on OBD-II library for Arduino +* Distributed under GPL v2.0 +* Copyright (c) 2012-2013 Stanley Huang +* All rights reserved. +*************************************************************************/ + +#include + +COBD obd; + +void setup() +{ + // we'll use the debug LED as output + pinMode(13, OUTPUT); + // start communication with OBD-II UART adapter + obd.begin(); + // initiate OBD-II connection until success + while (!obd.init()); +} + +void loop() +{ + int value; + if (obd.read(PID_RPM, value)) { + // RPM is successfully read and its value stored in variable 'value' + // light on LED when RPM exceeds 3000 + digitalWrite(13, value > 3000 ? HIGH : LOW); + } +} -- cgit v1.2.3