Small project to display some OBD values from the Toyota GT86/ Subaru BRZ/ Scion FRS on an OLED display.

Dependencies:   Adafruit_GFX MODSERIAL mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers VehicleSpeed.h Source File

VehicleSpeed.h

00001 #ifndef VEHICLESPEED_H
00002 #define VEHICLESPEED_H
00003 
00004 #include "PidValue.h"
00005 
00006 class VehicleSpeed : public PidValue
00007 {
00008 public:
00009     VehicleSpeed();
00010     virtual bool decode(const uint8_t* data, uint16_t length);
00011     
00012     static const char REQUEST_DATA[8];
00013 };
00014 
00015 #endif //VEHICLESPEED_H