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
Copy file name to clipboardExpand all lines: NodeManager.ino
+23-13Lines changed: 23 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -20,27 +20,33 @@
20
20
21
21
DESCRIPTION
22
22
23
-
NodeManager is intended to take care on your behalf of all those common tasks that a MySensors node has to accomplish, speeding up the development cycle of your projects.
24
-
Consider it as a sort of frontend for your MySensors projects. When you need to add a sensor (which requires just uncommeting a single line),
25
-
NodeManager will take care of importing the required library, presenting the sensor to the gateway/controller, executing periodically the main function of the sensor
26
-
(e.g. measure a temperature, detect a motion, etc.), allowing you to interact with the sensor and even configuring it remotely.
23
+
NodeManager is intended to take care on your behalf of all those common tasks that a
24
+
MySensors node has to accomplish, speeding up the development cycle of your projects.
25
+
Consider it as a sort of frontend for your MySensors projects. When you need to add
26
+
a sensor (which requires just uncommeting a single line),
27
+
NodeManager will take care of importing the required library, presenting the sensor
28
+
to the gateway/controller, executing periodically the main function of the sensor
29
+
(e.g. measure a temperature, detect a motion, etc.), allowing you to interact with
30
+
the sensor and even configuring it remotely.
27
31
28
32
Documentation available on: https://github.com/mysensors/NodeManager
29
-
NodeManager provides built-in implementation of a number of sensors through ad-hoc classes.
33
+
NodeManager provides built-in implementation of a number of sensors through ad-hoc
34
+
classes.
30
35
31
36
To use a buil-in sensor:
32
37
* Install the required library if any
33
38
* Enable the corresponding module (uncomment it) in the main sketch
34
39
* Declare the sensor (uncomment it) in the main sketch
35
40
36
-
Once created, the sensor will automatically present one or more child to the gateway and controller.
37
-
A list of buil-in sensors, module to enable, required dependencies and the number of child automatically created is presented below:
41
+
Once created, the sensor will automatically present one or more child to the gateway
42
+
and controller. A list of buil-in sensors, module to enable, required dependencies
43
+
and the number of child automatically created is presented below:
38
44
39
45
Sensor Name |#Child | Module to enable | Description | Dependencies
Copy file name to clipboardExpand all lines: README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,5 @@
1
+
# NodeManager
2
+
1
3
NodeManager is intended to take care on your behalf of all those common tasks that a MySensors node has to accomplish, speeding up the development cycle of your projects.
2
4
Consider it as a sort of frontend for your MySensors projects. When you need to add a sensor (which requires just uncommeting a single line),
3
5
NodeManager will take care of importing the required library, presenting the sensor to the gateway/controller, executing periodically the main function of the sensor
@@ -31,9 +33,9 @@ A list of buil-in sensors, module to enable, required dependencies and the numbe
31
33
32
34
Sensor Name |#Child | Module to enable | Description | Dependencies
0 commit comments