Learning classes...

Dependencies:   C12832

Dependents:   PURS_ZI_001

Stoperica.h

Committer:
tbjazic
Date:
2016-02-09
Revision:
1:4be9b47b9af5
Parent:
0:2fab4c84205a

File content as of revision 1:4be9b47b9af5:

#ifndef STOPERICA_H
#define STOPERICA_H

#include "mbed.h"
#include "C12832.h"

class Stoperica {
    public:
    Stoperica(PinName startPin, PinName stopPin);
    private:
    InterruptIn start, stop;
    C12832 lcd;
    Timer debounceStart, debounceStop, passedTime;
    void startPressed();
    void stopPressed();
};

#endif