node-dmx / dmx

DMX controller library for node.js
MIT License
293 stars 96 forks source link

module not working on macOS Catalina? #94

Open davidsi opened 4 years ago

davidsi commented 4 years ago

I have a enttec open usb dmx and a ultra dmx micro and I can not get either to work on my MacBook Pro. (Connected via a dongle as the MacBook is all usb C). I modified the simple demo, as below, and neither work. (I comment/uncomment and plug/unplug the correct device pair)

I'm connecting the device(s) to a dmx512 decoder for outputting to led strips. The strips definitely work as I can connect them to power directly. The /dev/usbserial addresses are correct.

Any help appreciated.

const DMX = require('./index');

const dmx = new DMX();

const universe = dmx.addUniverse( 'demo', 'enttec-usb-dmx-pro', '/dev/cu.usbserial-6A009910' ); //const universe = dmx.addUniverse( 'demo', 'enttec-open-usb-dmx', '/dev/cu.usbserial-AL05O8DK' );

let on = false;

setInterval(() => { if (on) { on = false; universe.updateAll(0); console.log('off'); } else { on = true; universe.updateAll(250); console.log('on'); } }, 1000);

gloverab commented 3 years ago

Did you ever get any resolve on this? I believe I'm having the same issue.

davidsi commented 3 years ago

No :-(

David

On Aug 19, 2020, at 8:19 PM, Alex Glover notifications@github.com wrote:

Did you ever get any resolve on this? I believe I'm having the same issue.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/node-dmx/dmx/issues/94#issuecomment-676927383, or unsubscribe https://github.com/notifications/unsubscribe-auth/ABKWOFQAOV42NWPTJ5EQLODSBSI35ANCNFSM4KDR2Y4A.