experimental fork

Dependencies:   NOKIA_5110 mbed

detection.cpp

Committer:
mva111
Date:
2016-10-05
Revision:
4:87037e41c888
Parent:
0:52895a475820
Child:
7:6a0958c2be7e

File content as of revision 4:87037e41c888:

class Detection{
    public:
    int channel;
    float time;
    float temp;
    float pressure;
    
    Detection(int channel_, float time_){
        channel = channel_;
        time = time_;
        temp = 0;
        pressure = 0;
        }
    };