-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Description
If you are using the artnet-node server, when you receive DMX data, the "Universe" variable will show you the wrong universe number.
The problem is on the file /lib/artnet_server.js, at line 29.
You need to replace:
var universe = (data[14] * 256) + data[15];
with:
var universe = data[14] + data[15];
Metadata
Metadata
Assignees
Labels
No labels