You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SensorHCSR04 | 1 | USE_HCSR04 | HC-SR04 sensor, return the distance between the sensor and an object | https://github.com/mysensors/MySensorsArduinoExamples/tree/master/libraries/NewPing
@@ -119,6 +120,7 @@ FEATURE_TIME | OFF | allow keeping the current system time in
119
120
FEATURE_RTC | OFF | allow keeping the current system time in sync with an attached RTC device (requires FEATURE_TIME)| https://github.com/JChristensen/DS3232RTC
120
121
FEATURE_SD | OFF | allow reading from and writing to SD cards | -
121
122
FEATURE_HOOKING | OFF | allow custom code to be hooked in the out of the box sensors | -
123
+
**/
122
124
123
125
/**********************************
124
126
* MySensors node configuration
@@ -262,7 +264,7 @@ FEATURE_HOOKING | OFF | allow custom code to be hooked in the ou
262
264
//#define USE_BH1750
263
265
//#define USE_MLX90614
264
266
//#define USE_BME280
265
-
//#define USE_BMP085
267
+
//#define USE_BMP085_180
266
268
//#define USE_BMP280
267
269
//#define USE_SONOFF
268
270
//#define USE_HCSR04
@@ -345,6 +347,7 @@ NodeManager node;
345
347
//SensorMLX90614 mlx90614(node);
346
348
//SensorBME280 bme280(node);
347
349
//SensorBMP085 bmp085(node);
350
+
//SensorBMP180 bmp180(node);
348
351
//SensorBMP280 bmp280(node);
349
352
//SensorSonoff sonoff(node);
350
353
//SensorHCSR04 hcsr04(node,6);
@@ -385,6 +388,8 @@ void before() {
385
388
//node.setReportIntervalSeconds(10);
386
389
// report measures of every attached sensors every 10 minutes
0 commit comments