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

Throttle.cpp

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

File content as of revision 6:506b703a8acf:

#include "Throttle.h"

const char Throttle::REQUEST_DATA[8] = {0x02, 0x01, 0x11, 0, 0, 0, 0, 0};

Throttle::Throttle()
: PidValue("Throttle", "%")
{
}

bool Throttle::decode(const uint8_t* data, uint16_t length)
{
    if (length < 2)
    {
        return false;
    }
    
    if ((data[1] != 0x11) || length != 3)
    {
        return false;
    }
    
    m_value = data[2] * 100 /  255; // %
    return true;
}