experimental fork

Dependencies:   NOKIA_5110 mbed

detection.cpp

Committer:
OliverKeller
Date:
2016-12-21
Revision:
7:6a0958c2be7e
Parent:
4:87037e41c888

File content as of revision 7:6a0958c2be7e:

class Detection
{
public:
    int channel;
    int time;
    float temp;
    float pressure;

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