experimental fork

Dependencies:   NOKIA_5110 mbed

Committer:
mva111
Date:
Wed Oct 05 16:56:33 2016 +0000
Revision:
4:87037e41c888
Parent:
0:52895a475820
Child:
7:6a0958c2be7e
default code should have the buzzer on and removed some methods from the detection class

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mva111 0:52895a475820 1 class Detection{
mva111 0:52895a475820 2 public:
mva111 0:52895a475820 3 int channel;
mva111 0:52895a475820 4 float time;
mva111 0:52895a475820 5 float temp;
mva111 0:52895a475820 6 float pressure;
mva111 0:52895a475820 7
mva111 0:52895a475820 8 Detection(int channel_, float time_){
mva111 0:52895a475820 9 channel = channel_;
mva111 0:52895a475820 10 time = time_;
mva111 0:52895a475820 11 temp = 0;
mva111 0:52895a475820 12 pressure = 0;
mva111 0:52895a475820 13 }
mva111 0:52895a475820 14 };