experimental fork

Dependencies:   NOKIA_5110 mbed

Revision:
7:6a0958c2be7e
Parent:
4:87037e41c888
--- a/detection.cpp	Sat Oct 08 13:34:52 2016 +0000
+++ b/detection.cpp	Wed Dec 21 15:34:09 2016 +0000
@@ -1,14 +1,15 @@
-class Detection{
-    public:
+class Detection
+{
+public:
     int channel;
-    float time;
+    int time;
     float temp;
     float pressure;
-    
-    Detection(int channel_, float time_){
+
+    Detection(int channel_, int time_) {
         channel = channel_;
         time = time_;
         temp = 0;
         pressure = 0;
-        }
-    };
\ No newline at end of file
+    }
+};
\ No newline at end of file