smart-nodes 0.4.26 → 0.4.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
package/central/central.js
CHANGED
|
@@ -139,7 +139,7 @@ module.exports = function (RED)
|
|
|
139
139
|
// Send cloned message to all linked nodes
|
|
140
140
|
config.links.forEach(link =>
|
|
141
141
|
{
|
|
142
|
-
helper.log(node, link,
|
|
142
|
+
helper.log(node, link, new_msg);
|
|
143
143
|
RED.events.emit("node:" + link, new_msg);
|
|
144
144
|
});
|
|
145
145
|
}
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
</thead>
|
|
23
23
|
<tbody>
|
|
24
24
|
<tr>
|
|
25
|
-
<td><code>enable</code></td>
|
|
25
|
+
<td><code>enable</code> oder <code>on</code></td>
|
|
26
26
|
<td>Aktiviert die Mischeransteuerung.</td>
|
|
27
27
|
</tr>
|
|
28
28
|
<tr>
|
|
29
|
-
<td><code>disable</code></td>
|
|
29
|
+
<td><code>disable</code> oder <code>off</code></td>
|
|
30
30
|
<td>Deaktiviert die Mischeransteuerung und fährt die Position an, die als Aus-Modus festgelegt ist.</td>
|
|
31
31
|
</tr>
|
|
32
32
|
<tr>
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
</thead>
|
|
23
23
|
<tbody>
|
|
24
24
|
<tr>
|
|
25
|
-
<td><code>enable</code></td>
|
|
25
|
+
<td><code>enable</code> or <code>on</code></td>
|
|
26
26
|
<td>Activates the mixer control.</td>
|
|
27
27
|
</tr>
|
|
28
28
|
<tr>
|
|
29
|
-
<td><code>disable</code></td>
|
|
29
|
+
<td><code>disable</code> or <code>off</code></td>
|
|
30
30
|
<td>Deactivates the mixer control and moves to the position that is set as the off mode.</td>
|
|
31
31
|
</tr>
|
|
32
32
|
<tr>
|
|
@@ -138,6 +138,7 @@ module.exports = function (RED)
|
|
|
138
138
|
|
|
139
139
|
switch (real_topic)
|
|
140
140
|
{
|
|
141
|
+
case "on":
|
|
141
142
|
case "enable":
|
|
142
143
|
if (node_settings.enabled)
|
|
143
144
|
break;
|
|
@@ -148,6 +149,7 @@ module.exports = function (RED)
|
|
|
148
149
|
startSampling();
|
|
149
150
|
break;
|
|
150
151
|
|
|
152
|
+
case "off":
|
|
151
153
|
case "disable":
|
|
152
154
|
if (!node_settings.enabled)
|
|
153
155
|
break;
|