1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/*************************************************************************
* Sample sketch for Freematics OBD-II I2C Adapter
* Reads and prints several OBD-II PIDs value and MEMS sensor data
* Distributed under GPL v2.0
* Visit http://freematics.com for more information
* (C)2012-2015 Stanley Huang <stanleyhuangyc@gmail.com>
*************************************************************************/
#include <Arduino.h>
#include <Wire.h>
#include <SPI.h>
#include <OBD.h>
#include <I2Cdev.h>
#include <MPU9150.h>
COBDI2C obd;
MPU6050 accelgyro;
void testOut()
{
static const char cmds[][6] = {"ATZ\r", "ATL1\r", "ATH0\r", "ATRV\r", "0100\r", "010C\r", "0902\r"};
char buf[128];
for (byte i = 0; i < sizeof(cmds) / sizeof(cmds[0]); i++) {
const char *cmd = cmds[i];
Serial.print("Sending ");
Serial.println(cmd);
if (obd.sendCommand(cmd, buf, sizeof(buf))) {
char *p = strstr(buf, cmd);
if (p)
p += strlen(cmd);
else
p = buf;
while (*p == '\r') p++;
while (*p) {
Serial.write(*p);
if (*p == '\r' && *(p + 1) != '\r')
Serial.write('\n');
p++;
}
} else {
Serial.println("Timeout");
}
delay(1000);
}
Serial.println();
}
void readMEMS()
{
int16_t ax, ay, az;
int16_t gx, gy, gz;
int temp;
accelgyro.getMotion6(&ax, &ay, &az, &gx, &gy, &gz);
temp = accelgyro.getTemperature();
Serial.print('[');
Serial.print(millis());
Serial.print(']');
Serial.print("ACC=");
Serial.print(ax);
Serial.print('/');
Serial.print(ay);
Serial.print('/');
Serial.print(az);
Serial.print(" GYRO=");
Serial.print(gx);
Serial.print('/');
Serial.print(gy);
Serial.print('/');
Serial.println(gz);
}
void readPIDs()
{
static const byte pidlist[] = {PID_ENGINE_LOAD, PID_COOLANT_TEMP, PID_RPM, PID_SPEED, PID_TIMING_ADVANCE, PID_INTAKE_TEMP, PID_THROTTLE, PID_FUEL_LEVEL};
Serial.print('[');
Serial.print(millis());
Serial.print(']');
for (byte i = 0; i < sizeof(pidlist) / sizeof(pidlist[0]); i++) {
byte pid = pidlist[i];
bool valid = obd.isValidPID(pid);
Serial.print((int)pid | 0x100, HEX);
Serial.print('=');
if (valid) {
int value;
if (obd.readPID(pid, value)) {
Serial.print(value);
}
}
Serial.print(' ');
}
Serial.println();
}
void setup() {
delay(500);
Serial.begin(115200);
obd.begin();
accelgyro.initialize();
readMEMS();
do {
testOut();
Serial.println("Init...");
} while (!obd.init());
char buf[64];
if (obd.getVIN(buf, sizeof(buf))) {
Serial.print("VIN:");
Serial.println(buf);
}
delay(1000);
}
void loop() {
readPIDs();
readMEMS();
}
|