noob question Humidity sketch
General Discussion
4
Posts
2
Posters
1.3k
Views
2
Watching
-
Hi,
is it correct, that the standard humidity sketch is only sending new values when there is a change?
In my case, as the temp and humidity is constant, there can be hours without new reading ( Iam using DHT11)
It would be great to get a short feedback if this is "how it should be" in the standard configuration?
Does anybody has a sketch where every time all the data is send?
thanks
-
Just change the following statement (line 41)
} else if (temperature != lastTemp) {to
} else {and the same with line 54.
-
Yes, I think that is the main reason. :-)