kh
Dependencies: Adafruit_SGP30_mbed mbed CCS811 mbed-rtos ALPHASENSE Adafruit_ADS1015_ BME680
SDS011/NovaSDS011.h
- Committer:
- etiene32
- Date:
- 2019-03-06
- Revision:
- 0:43070b2dfc87
File content as of revision 0:43070b2dfc87:
#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]; };