etienne maillet / Mbed 2 deprecated Example_DS3231_test

Dependencies:   Adafruit_SGP30_mbed mbed CCS811 mbed-rtos ALPHASENSE Adafruit_ADS1015_ BME680

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers NovaSDS011.h Source File

NovaSDS011.h

00001 #pragma once
00002 
00003 #include "mbed.h"
00004 
00005 class NovaSDS011
00006 {
00007 
00008 public:
00009     NovaSDS011(Serial* serial);
00010     void read();
00011     float getPM10();
00012     float getPM2_5();
00013 private:
00014     Serial* serial;
00015     float pm10_count;
00016     float pm2_5_count;
00017 
00018     static const uint8_t PACKET_SIZE = 10;
00019     uint8_t buffer[PACKET_SIZE];
00020 
00021 };