Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: Adafruit_SGP30_mbed mbed CCS811 mbed-rtos ALPHASENSE Adafruit_ADS1015_ BME680
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 };
Generated on Wed Jul 13 2022 01:47:14 by
1.7.2