stock mbed AnalogReads current loop closed and working

Dependencies:   mbed

Fork of priustroller by Bayley Wang

sensors/throttle.cpp

Committer:
nki
Date:
2015-04-16
Revision:
36:11766b5da6ed
Parent:
11:dccbaa9274c5

File content as of revision 36:11766b5da6ed:

#include "includes.h"
#include "sensors.h"
#include "filters.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;
}