Add LocalSave and SendLocalData
This commit is contained in:
parent
e9d30f5f30
commit
97346c1b06
|
@ -22,13 +22,13 @@
|
|||
#define CLUSTER "grappe3"
|
||||
#define SENSORS_NUMBER 5
|
||||
#define DHT22 22
|
||||
//comment for the test part this is the good frequency
|
||||
// comment for the test part this is the good frequency
|
||||
#define TIME_TO_SLEEP 596
|
||||
//#define TIME_TO_SLEEP 28
|
||||
// #define TIME_TO_SLEEP 28
|
||||
#define US_TO_S_FACTOR 1000000
|
||||
#define R2 100
|
||||
#define R3 10
|
||||
#define VOLTAGE_OUT(Vin) (((Vin)*R3) / (R2 + R3))
|
||||
#define VOLTAGE_OUT(Vin) (((Vin) * R3) / (R2 + R3))
|
||||
#define VOLTAGE_MAX 4200
|
||||
#define VOLTAGE_MIN 3300
|
||||
#define ADC_REFERENCE 1100
|
||||
|
@ -62,8 +62,7 @@ std::tuple<int, int, int> getDate();
|
|||
*/
|
||||
void writeMsg(char *txt, float *temp, float *hum, int number);
|
||||
|
||||
//timeClient.getEpochTime().toCharArray(date, 50); = convertir un string en char
|
||||
|
||||
// timeClient.getEpochTime().toCharArray(date, 50); = convertir un string en char
|
||||
|
||||
/*
|
||||
For test the esp32 signal emission without server Working/fixed/updated :
|
||||
|
|
Loading…
Reference in a new issue