Learning classes.

Dependencies:   C12832

Dependents:   PURS_ZI_003

Committer:
tbjazic
Date:
Wed Feb 10 11:17:49 2016 +0000
Revision:
0:6a7df3c69564
Initial.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
tbjazic 0:6a7df3c69564 1 #ifndef BOMBA_H
tbjazic 0:6a7df3c69564 2 #define BOMBA_H
tbjazic 0:6a7df3c69564 3
tbjazic 0:6a7df3c69564 4 #include "mbed.h"
tbjazic 0:6a7df3c69564 5 #include "C12832.h"
tbjazic 0:6a7df3c69564 6
tbjazic 0:6a7df3c69564 7 class Bomba {
tbjazic 0:6a7df3c69564 8 public:
tbjazic 0:6a7df3c69564 9 Bomba(PinName aktivirajPin);
tbjazic 0:6a7df3c69564 10 private:
tbjazic 0:6a7df3c69564 11 InterruptIn aktiviraj;
tbjazic 0:6a7df3c69564 12 C12832 lcd;
tbjazic 0:6a7df3c69564 13 Timer debounce;
tbjazic 0:6a7df3c69564 14 Timeout detoniraj;
tbjazic 0:6a7df3c69564 15 void aktivacija();
tbjazic 0:6a7df3c69564 16 void detonacija();
tbjazic 0:6a7df3c69564 17 bool aktiviran;
tbjazic 0:6a7df3c69564 18 PwmOut buzz;
tbjazic 0:6a7df3c69564 19 float x;
tbjazic 0:6a7df3c69564 20 };
tbjazic 0:6a7df3c69564 21
tbjazic 0:6a7df3c69564 22 #endif // BOMBA_H