Skip to content

Commit d188992

Browse files
user2684user2684
authored andcommitted
Release v1.7
1 parent 46a74b2 commit d188992

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

NodeManager.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,9 +397,9 @@ void before() {
397397
// set an offset to -1 to a thermistor sensor
398398
//thermistor.setOffset(-1);
399399
// change the id of a the first child of a sht21 sensor
400-
//sht21.children.get(1)->child_id = 5;
400+
//sht21.children.get(1)->setChildId(5);
401401
// report only when the analog value is above 40%
402-
//analog.children.get(1)->min_threshold = 40;
402+
//analog.children.get(1)->setMinThreshold(40);
403403
// power all the nodes through dedicated pins
404404
//node.setPowerManager(power);
405405
/*

NodeManagerLibrary.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <Arduino.h>
99

1010
// define NodeManager version
11-
#define VERSION "1.7-dev"
11+
#define VERSION "1.7"
1212

1313
/***********************************
1414
Constants

0 commit comments

Comments
 (0)