kopia lustrzana https://github.com/dl9rdz/rdz_ttgo_sonde
Split temp & humidity SondeHub updates
rodzic
7254558c44
commit
ae13b7853a
|
@ -3488,12 +3488,20 @@ void sondehub_send_data(WiFiClient * client, SondeInfo * s, struct st_sondehub *
|
||||||
w += strlen(w);
|
w += strlen(w);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only send temp & humidity if provided
|
// Only send temp if provided
|
||||||
if (((int)s->temperature != 0) && ((int)s->relativeHumidity != 0)) {
|
if ((int)s->temperature != 0) {
|
||||||
|
sprintf(w,
|
||||||
|
"\"temp\": %.3f,",
|
||||||
|
float(s->temperature)
|
||||||
|
);
|
||||||
|
w += strlen(w);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Only send humidity if provided
|
||||||
|
if ((int)s->relativeHumidity != 0) {
|
||||||
sprintf(w,
|
sprintf(w,
|
||||||
"\"temp\": %.3f,"
|
|
||||||
"\"humidity\": %.3f,",
|
"\"humidity\": %.3f,",
|
||||||
float(s->temperature), float(s->relativeHumidity)
|
float(s->relativeHumidity)
|
||||||
);
|
);
|
||||||
w += strlen(w);
|
w += strlen(w);
|
||||||
}
|
}
|
||||||
|
|
Ładowanie…
Reference in New Issue