premiere ebauche

Dependencies:   mbed PinDetect

speedlimiter.cpp

Committer:
shovelcat
Date:
2018-10-18
Revision:
2:06f128641b62
Child:
3:4da392d2bae8

File content as of revision 2:06f128641b62:

/*
author: Sebastian Pelchat
date: october 2018
*/
#include "speedlimiter.hpp"

SpeedLimiter::SpeedLimiter(const PinName& pedalInHi, const PinName& pedalInLo, const PinName& pedalOutHi, const PinName& pedalOutLo)
    : _pedalInHi(pedalInHi)
    , _pedalInLo(pedalInLo)
    , _pedalOutHi(pedalOutHi)
    , _pedalOutLo(pedalOutLo)
{

}