Prius IPM controller

Dependencies:   mbed

Fork of analoghalls5_5 by N K

sensors/throttle.cpp

Committer:
bwang
Date:
2015-03-08
Revision:
11:dccbaa9274c5
Parent:
throttle.cpp@ 10:b4abecccec7a

File content as of revision 11:dccbaa9274c5:

#include "includes.h"
#include "sensors.h"

Throttle::Throttle(PinName pin, float min, float max) {
    _in = new AnalogVoltageSensor(pin, 1.0f);
    _min = min;
    _max = max;
}

float Throttle::GetThrottle() {
    float v = _in->GetVoltage();
    v = (v - _min) / (_max - _min);
    if (v > 1.0f) return 1.0f;
    if (v < 0.0f) return 0.0f;
    return v;
}