Skip to content

Commit

Permalink
Update BresserWeatherSensorMQTTWifiMgr.ino
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-bs committed Jul 10, 2023
1 parent 3ddef5e commit 2321631
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ void publishWeatherdata(bool complete)
}
}
if (weatherSensor.sensor[i].uv_ok || complete) {
mqtt_payload += String(",\"uv\":") + JSON_FLOAT(String(weatherSensor.sensor[i].uv, 1);
mqtt_payload += String(",\"uv\":") + JSON_FLOAT(String(weatherSensor.sensor[i].uv, 1));
}
if (weatherSensor.sensor[i].light_ok || complete) {
mqtt_payload += String(",\"light_klx\":") + JSON_FLOAT(String(weatherSensor.sensor[i].light_klx, 1));
Expand Down

0 comments on commit 2321631

Please sign in to comment.