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
The generated editor scripts declared their definition object and helper
functions at the top level. Since Node-RED evaluates every node's editor
script in the same global scope, the second node's `const def` threw
"Identifier 'def' has already been declared", which aborted that script and
left the node missing from the palette — only the first node registered.
Wrap each init script in an IIFE so its declarations stay local.
| universe | The universe that is meant to be observed. |`\d+` (`1` to `63999`) |`1`| yes |
36
-
| mode | Defines whether the node returns the values of every read sACN package (passthrough mode), or merged values using HTP or LTP. |`passthrough`, `htp`, `ltp`|`htp`| yes |
37
-
| output | Defines whether the node sends only changed values or the whole universe. |`full`, `changes`|`full`| yes |
38
-
| trigger | Controls when a message is emitted: only on change, on every received packet, or on change plus a cyclic keepalive re-emit. |`changes`, `always`, `interval`|`changes`| yes |
39
-
| interval | Keepalive interval in milliseconds for the `interval` trigger; the full universe is re-emitted when no change arrives in time. |`\d+`|`1000`| no |
40
-
| clearOnUniverseChange | When the observed universe is switched at runtime, emit a full universe of zeros until real data for the new universe arrives. |`true`, `false`|`false`| no |
41
-
| values | Emit channel values as a percentage (0–100) or as raw DMX values (0–255). |`percent`, `absolute`|`percent`| yes |
42
-
| IP-address | IP-Address of the network-interface that should be used for reading from sACN. |`\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\` (_any valid ip-address_) |_empty_| no |
43
-
| port | The network port which should be used for reading sACN. |`\d+`|_empty_ (defaults to `5568`) | no |
33
+
| Parameter | Description| Possible Values | Default Value | Mandatory |
| universe | The universe that is meant to be observed.|`\d+` (`1` to `63999`) |`1`| yes |
36
+
| mode | Defines whether the node returns the values of every read sACN package (passthrough mode), or merged values using HTP or LTP.|`passthrough`, `htp`, `ltp`|`htp`| yes |
37
+
| output | Defines whether the node sends only changed values or the whole universe. |`full`, `changes`|`full`| yes |
38
+
| trigger | Controls when a message is emitted: only on change, on every received packet, or on change plus a cyclic keepalive re-emit. |`changes`, `always`, `interval`|`changes`| yes |
39
+
| interval | Keepalive interval in milliseconds for the `interval` trigger; the full universe is re-emitted when no change arrives in time. |`\d+`|`1000`| no |
40
+
| clearOnUniverseChange | When the observed universe is switched at runtime, emit a full universe of zeros until real data for the new universe arrives. |`true`, `false`|`false`| no |
41
+
| values | Emit channel values as a percentage (0–100) or as raw DMX values (0–255).|`percent`, `absolute`|`percent`| yes |
42
+
| IP-address | IP-Address of the network-interface that should be used for reading from sACN.|`\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\` (_any valid ip-address_) |_empty_| no |
43
+
| port | The network port which should be used for reading sACN.|`\d+`|_empty_ (defaults to `5568`) | no |
44
44
45
45
#### Input:
46
46
@@ -69,16 +69,16 @@ This node can be used to send one universe using sACN.
69
69
70
70
#### Parameters:
71
71
72
-
| Parameter | Description | Possible Values | Default Value | Mandatory |
| universe | The universe that is meant to be observed. |`\d+` (`1` to `63999`) |`1`| yes |
75
-
| source-name | The name for the sACN-sender that should be displayed within the network. |_any string below 50 characters_|`Node-RED`| yes |
76
-
| speed | Defines the frequency for sending sACN-packages |`once (0Hz)`, `24Hz`, `27Hz`, `30Hz`, `40Hz`, `44Hz`|`0Hz`| yes |
77
-
| priority | The priority that should be used for the sACN-sender. |`\d+` (`1` to `200`) |`100`| yes |
78
-
| values | Interpret the payload as a percentage (0–100) or as raw DMX values (0–255). |`percent`, `absolute`|`percent`| yes |
79
-
| blank-on-stop | Send an all-zero frame before closing so receivers go dark on stop. |`true`, `false`|`false`| no |
80
-
| IP-address | IP-Address of the network-interface that should be used for sending sACN. |`\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\` (_any valid ip-address_) |_empty_| no |
81
-
| port | The network port which should be used for reading sACN. |`\d+`|_empty_ (defaults to `5568`) | no |
72
+
| Parameter | Description| Possible Values | Default Value | Mandatory |
| universe | The universe that is meant to be observed.|`\d+` (`1` to `63999`) |`1`| yes |
75
+
| source-name | The name for the sACN-sender that should be displayed within the network.|_any string below 50 characters_|`Node-RED`| yes |
76
+
| speed | Defines the frequency for sending sACN-packages|`once (0Hz)`, `24Hz`, `27Hz`, `30Hz`, `40Hz`, `44Hz`|`0Hz`| yes |
77
+
| priority | The priority that should be used for the sACN-sender.|`\d+` (`1` to `200`) |`100`| yes |
78
+
| values | Interpret the payload as a percentage (0–100) or as raw DMX values (0–255). |`percent`, `absolute`|`percent`| yes |
79
+
| blank-on-stop | Send an all-zero frame before closing so receivers go dark on stop. |`true`, `false`|`false`| no |
80
+
| IP-address | IP-Address of the network-interface that should be used for sending sACN.|`\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\` (_any valid ip-address_) |_empty_| no |
81
+
| port | The network port which should be used for reading sACN.|`\d+`|_empty_ (defaults to `5568`) | no |
0 commit comments