Forum >OBD-II UART: detect reverse/forward gear change
OBD-II UART: detect reverse/forward gear change

I have the OBD-II UART Model B (gyro/accel) + Arduino Uno. Hardware and sample sketches work great. I'll keep the Arduino in the car plugged in at all times. I'd like to detect via OBD the typical sequence of events when one backs out of a parking spot: 1) start the engine, 2) throw in reverse, back out clear out of the parking spot, 3) shift the gear into "D" and drive away. I can detect engine start easily with PID_RUNTIME, but I'm wondering what's the "cleanest" way to detect the reverse/forward gear shift. I could use the accelerometer to detect a short movement backward, followed by forward movement. Or I could track the RPM: a short increase just after engine start (when backing out), then a drop to zero, then a constant increase when driving away. Are there any better options? Thanks.
2013-08-15 07:11:10 Thanks. I wouldn't actually need the exact gear setting, I'd just need to detect if the axle spins forward or backward. In the Wiki OBD list I see hex codes 61,62 & 64, all referring to torque. I've noticed that their values range from -125 to 125. Could it be that neg. torque values refer to movement backward and pos. values to movement forward? If so, I'm a good enough programmer that I could implement handling those PIDs in my copy of your lib.
element
