summaryrefslogtreecommitdiff
path: root/libraries/OBD
diff options
context:
space:
mode:
authorStanley Huang <stanleyhuangyc@gmail.com>2014-09-05 13:22:09 +1000
committerStanley Huang <stanleyhuangyc@gmail.com>2014-09-05 13:22:09 +1000
commitd142d74a75664f948711fb3de2871cb08085c4f5 (patch)
treeedc7191dcf5633c2642958441a2d77aebd9a2107 /libraries/OBD
parentefcbb054bd26a2d92b6153466344c7da8a858372 (diff)
download2021-arduino-obd-d142d74a75664f948711fb3de2871cb08085c4f5.tar.gz
2021-arduino-obd-d142d74a75664f948711fb3de2871cb08085c4f5.tar.bz2
2021-arduino-obd-d142d74a75664f948711fb3de2871cb08085c4f5.zip
add getVoltage() for getting battery voltage
This feature is provided by the OBD-II adapter, so it's available when car ignition is off.
Diffstat (limited to 'libraries/OBD')
-rw-r--r--libraries/OBD/OBD.cpp33
-rw-r--r--libraries/OBD/OBD.h4
2 files changed, 32 insertions, 5 deletions
diff --git a/libraries/OBD/OBD.cpp b/libraries/OBD/OBD.cpp
index b881f73..f1b0c0c 100644
--- a/libraries/OBD/OBD.cpp
+++ b/libraries/OBD/OBD.cpp
@@ -218,25 +218,50 @@ bool COBD::getResult(byte& pid, int& result)
return true;
}
-void COBD::setProtocol(OBD_PROTOCOLS h)
+bool COBD::setProtocol(OBD_PROTOCOLS h)
{
+ char buf[OBD_RECV_BUF_SIZE];
if (h == PROTO_AUTO) {
write("ATSP00\r");
} else {
- char cmd[8];
- sprintf(cmd, "ATSP%d\r", h);
- write(cmd);
+ sprintf(buf, "ATSP%d\r", h);
+ write(buf);
}
+ if (receive(buf, 3000) > 0 && strstr(buf, "OK"))
+ return true;
+ else
+ return false;
}
void COBD::sleep()
{
write("ATLP\r");
+ receive();
}
void COBD::wakeup()
{
write('\r');
+ receive();
+}
+
+unsigned int COBD::getVoltage()
+{
+ char buf[OBD_RECV_BUF_SIZE];
+ write("ATRV\r");
+ byte n = receive(buf, 100);
+ if (n > 0) {
+ for (byte i = 0; i < n; i++) {
+ if (buf[i] >= '0' && buf[i] <= '9') {
+ int v1 = atoi(buf);
+ int v2 = 0;
+ char *p = strchr(buf, '.');
+ if (p) v2 = atoi(p + 1);
+ return (unsigned int)v1 * 1000 + v2;
+ }
+ }
+ }
+ return 0;
}
bool COBD::isValidPID(byte pid)
diff --git a/libraries/OBD/OBD.h b/libraries/OBD/OBD.h
index f5d7e3a..8003fb1 100644
--- a/libraries/OBD/OBD.h
+++ b/libraries/OBD/OBD.h
@@ -118,9 +118,11 @@ public:
// wake up device from previous sleep
virtual void wakeup();
// set working protocol (default auto)
- virtual void setProtocol(OBD_PROTOCOLS h = PROTO_AUTO);
+ virtual bool setProtocol(OBD_PROTOCOLS h = PROTO_AUTO);
// clear diagnostic trouble code
virtual void clearDTC();
+ // get battery voltage (in mV, 12500 for 12.5V, works without ECU)
+ virtual unsigned int getVoltage();
// send query for specified PID
virtual void sendQuery(byte pid);
// retrive and parse the response of specifie PID