feat: intégration DHT capteur

This commit is contained in:
2023-04-04 11:22:24 +02:00
parent a6abcd4fe1
commit b1728b0509
4 changed files with 22 additions and 1 deletions

View File

@ -1,6 +1,8 @@
#ifndef PROGRAM_H
#define PROGRAM_H
#include "DHT.h"
class Program{
public:
/**
@ -17,5 +19,11 @@ public:
private:
/* data */
/**
* @brief capteur humi/temp
*
*/
DHT *dht;
};
#endif