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

VehicleSpeed.h

Committer:
chrta
Date:
2014-05-01
Revision:
6:506b703a8acf
Parent:
5:0b229ba8ede5

File content as of revision 6:506b703a8acf:

#ifndef VEHICLESPEED_H
#define VEHICLESPEED_H

#include "PidValue.h"

class VehicleSpeed : public PidValue
{
public:
    VehicleSpeed();
    virtual bool decode(const uint8_t* data, uint16_t length);
    
    static const char REQUEST_DATA[8];
};

#endif //VEHICLESPEED_H