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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
/*************************************************************************
* Testing 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
* Written by Stanley Huang <support@freematics.com.au>
*************************************************************************/
#include <Arduino.h>
#include <Wire.h>
#include <SPI.h>
#include <OBD.h>
COBDI2C obd;
bool hasMEMS;
void testOut()
{
static const char cmds[][6] = {"ATZ\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()
{
int acc[3];
int gyro[3];
int temp;
if (!obd.memsRead(acc, gyro, 0, &temp)) return;
Serial.print('[');
Serial.print(millis());
Serial.print(']');
Serial.print("ACC:");
Serial.print(acc[0]);
Serial.print('/');
Serial.print(acc[1]);
Serial.print('/');
Serial.print(acc[2]);
Serial.print(" GYRO:");
Serial.print(gyro[0]);
Serial.print('/');
Serial.print(gyro[1]);
Serial.print('/');
Serial.print(gyro[2]);
Serial.print(" TEMP:");
Serial.print((float)temp / 10, 1);
Serial.println("C");
}
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 readBatteryVoltage()
{
Serial.print('[');
Serial.print(millis());
Serial.print(']');
Serial.print("Battery:");
Serial.print(obd.getVoltage(), 1);
Serial.println('V');
}
void setup() {
Serial.begin(115200);
delay(500);
obd.begin();
hasMEMS = obd.memsInit();
Serial.print("MEMS:");
Serial.println(hasMEMS ? "Yes" : "No");
// send some commands for testing and show response for debugging purpose
testOut();
// initialize OBD-II adapter
do {
Serial.println("Init...");
} while (!obd.init());
char buf[64];
if (obd.getVIN(buf, sizeof(buf))) {
Serial.print("VIN:");
Serial.println(buf);
}
unsigned int codes[6];
byte dtcCount = obd.readDTC(codes, 6);
if (dtcCount == 0) {
Serial.println("No DTC");
} else {
Serial.print(dtcCount);
Serial.print(" DTC:");
for (byte n = 0; n < dtcCount; n++) {
Serial.print(' ');
Serial.print(codes[n], HEX);
}
Serial.println();
}
delay(3000);
}
void loop() {
readPIDs();
readBatteryVoltage();
if (hasMEMS) {
readMEMS();
}
}
|