-
Notifications
You must be signed in to change notification settings - Fork 93
Open
Description
hello,
I'm using it with a 8-channel mode with that.
CLNB600_Cameo_DMX_Control_Table_EN.pdf
I'm just trying to move to proper position with a white light
import { DMX, EnttecOpenUSBDMXDriver, Animation } from "dmx-ts";
import { EnttecOpenDMXUSBDevice } from "enttec-open-dmx-usb";
const dmx = new DMX();
enum C {
MechPan = 1,
MechTilt = 2,
Dimmer = 3,
Strobe = 4,
Red = 5,
Green = 6,
Blue = 7,
White = 8,
}
(async () => {
const universe = await dmx.addUniverse(
"demo",
new EnttecOpenUSBDMXDriver(await EnttecOpenDMXUSBDevice.getFirstAvailableDevice()),
);
universe.updateAll(0);
universe.update({ [C.MechPan]: 255, [C.Dimmer]: 255, [C.White]: 255 });
})();But this is glitchy as hell look at this :
212352663-b77a8078-423d-4cf9-a5be-3a5a5244f123.mp4
What I'm supposed to understand ?
Metadata
Metadata
Assignees
Labels
No labels