hello, I'm using it with a 8-channel mode with that. [CLNB600_Cameo_DMX_Control_Table_EN.pdf](https://github.com/node-dmx/dmx/files/10412656/CLNB600_Cameo_DMX_Control_Table_EN.pdf) I'm just trying to move to proper position with a white light ```ts 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 : https://user-images.githubusercontent.com/6640835/212360258-b1214146-c400-48de-98cc-ad794404b1c0.mp4 What I'm supposed to understand ?
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
But this is glitchy as hell look at this :
212352663-b77a8078-423d-4cf9-a5be-3a5a5244f123.mp4
What I'm supposed to understand ?