noob question Humidity sketch
-
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.
-
thanks!
is the reason for this saving of battery live? -> less sending?
-
Yes, I think that is the main reason.