Merge branch 'patch-2' of https://github.com/LukePrior/rdz_ttgo_sonde into LukePrior-patch-2

pull/175/head
Hansi, dl9rdz 2021-09-18 20:30:04 +02:00
commit 1fb66cdb0b
1 zmienionych plików z 12 dodań i 4 usunięć

Wyświetl plik

@ -3666,12 +3666,20 @@ void sondehub_send_data(WiFiClient * client, SondeInfo * s, struct st_sondehub *
w += strlen(w);
}
// Only send temp & humidity if provided
if (((int)s->temperature != 0) && ((int)s->relativeHumidity != 0)) {
// Only send temp if provided
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,
"\"temp\": %.3f,"
"\"humidity\": %.3f,",
float(s->temperature), float(s->relativeHumidity)
float(s->relativeHumidity)
);
w += strlen(w);
}