refactored added new LCD

This commit is contained in:
2021-07-19 07:28:49 +02:00
commit 4af72b1710
21 changed files with 3527 additions and 0 deletions

15
particles.h Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#include "Arduino.h"
#include "config.h"
#include <vector>
#include "PMS.h" // Particulate Matter Sensor driver (embedded)
#include "RunningMedian.h"
#include "mqtt.h"
uint32_t getLCDvalue(void);
void reportToMqtt(void );
void initParticles( void );
void handleParticles( void );