feat : gestion Capteur DJT (a tester)

This commit is contained in:
Clement 2023-05-02 17:25:03 +02:00
parent edfdc6107f
commit 7574061bec
3 changed files with 8 additions and 8 deletions

View File

@ -24,6 +24,7 @@ public:
* @return String valeur format "XX/YY" X% et Y°C
*/
String read();
private:
DHT* capteur;

View File

@ -1,9 +1,8 @@
#include "../include/HumiTemp.h"
HumiTemp::HumiTemp(int pin, String type, String fullVall):
Capteur("H/T",fullVall){
this->capteur = new DHT(pin,type);
this->capteur = new DHT(pin, type.c_str());
this->capteur->begin();
}

View File

@ -19,15 +19,15 @@ Program::Program(){
void Program::loop(){
String distance = this->ultrasonic->read();
//TODO: envoyer les infos des capteur par la suite
Serial.println("humiTemp = " + this->dht->read());
String humitemp = this->dht->read();
//this->api->sendValue(distance, TRASHCAN_ONE, this->ultrasonic->getValType(), this->ultrasonic->isFull());
Serial.print("Distance in CM: ");
Serial.print(distance);
Serial.print("Distance in CM = " + distance);
Serial.println(this->ultrasonic->isFull()?" true":" false");
//this->api->sendValue(humitemp, TRASHCAN_TWO, this->dht->getValType(), this->dht->isFull());
Serial.print("humiTemp = " + this->dht->read());
Serial.println(this->dht->isFull()?" true":" false");
delay(1000);
}