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 PMS7003.h Source File

PMS7003.h

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