Learning classes...

Dependencies:   C12832

Dependents:   PURS_ZI_002

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Stoperica.h Source File

Stoperica.h

00001 #ifndef STOPERICA_H
00002 #define STOPERICA_H
00003 
00004 #include "mbed.h"
00005 #include "C12832.h"
00006 
00007 class Stoperica {
00008     public:
00009     Stoperica(PinName startPausePin, PinName stopPin);
00010     private:
00011     InterruptIn startPause, stop;
00012     C12832 lcd;
00013     Timer debounceStartPause, debounceStop, passedTime;
00014     void startPausePressed();
00015     void stopPressed();
00016     bool isMeasurementStarted;
00017 };
00018 
00019 #endif