kh

Dependencies:   Adafruit_SGP30_mbed mbed CCS811 mbed-rtos ALPHASENSE Adafruit_ADS1015_ BME680

Revision:
0:43070b2dfc87
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SDS011/NovaSDS011.h	Wed Mar 06 14:03:41 2019 +0000
@@ -0,0 +1,21 @@
+#pragma once
+
+#include "mbed.h"
+
+class NovaSDS011
+{
+
+public:
+    NovaSDS011(Serial* serial);
+    void read();
+    float getPM10();
+    float getPM2_5();
+private:
+    Serial* serial;
+    float pm10_count;
+    float pm2_5_count;
+
+    static const uint8_t PACKET_SIZE = 10;
+    uint8_t buffer[PACKET_SIZE];
+
+};
\ No newline at end of file