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 EngineRpm.h Source File

EngineRpm.h

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