Skip to content

Commit bf7372e

Browse files
committed
Corrected measurement interval back to 60 seconds (had set it to 1 second in order to verify functionality)
1 parent f323017 commit bf7372e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libraries/MySensors/examples/SensebenderMicro/SensebenderMicro.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
#define CHILD_ID_HUM 2
3030

3131
// How many milli seconds between each measurement
32-
#define MEASURE_INTERVAL 1000
32+
#define MEASURE_INTERVAL 60000
3333

3434
// FORCE_TRANSMIT_INTERVAL, this number of times of wakeup, the sensor is forced to report all values to the controller
3535
#define FORCE_TRANSMIT_INTERVAL 30
@@ -117,6 +117,7 @@ void setup() {
117117
raHum.clear();
118118
raTemp.clear();
119119
sendTempHumidityMeasurements(false);
120+
sendBattLevel(false);
120121
}
121122

122123

0 commit comments

Comments
 (0)