-

Dependents:   Sensor

Revision:
1:810b9b0dd9a4
Parent:
0:0f5101a649db
--- a/HygroClip2.h	Tue Feb 16 11:34:37 2016 +0000
+++ b/HygroClip2.h	Tue Mar 15 07:45:31 2016 +0000
@@ -14,16 +14,18 @@
     float getHumidity();
     float getDewPoint();
     float getAbsolutHumidity();
+    bool isDataValid();
 private:
     // Private functions
     void uartCallback();
-        
+
     // Variables
     Serial uart_;
     float temperature_;
     float humidity_;
     bool dataReadyToPars_;
     int8_t buffer_[HYGROCLIP_BUFFER_SIZE + 1];
+    bool isDataValid_;
 };
 
-#endif
\ No newline at end of file
+#endif