gfduszynski

Results 31 comments of gfduszynski

There is new version available with fix in place

I can see that issue originates from ``libusb``. There are related issues https://github.com/signal11/hidapi/issues/397 But no ready to use solution as of yet.

@dominalien It tries to read firmware version from the device itself, that's why it fails.

Thanks for quick feedback. I'm doing prototype UI in kiosk type device, based on raspberry pi compute module 3. Resources are somewhat constrained and I aim to keep node count...

This would be helpful, for example when used in conjunction with SIP card in intercom scenario. One could enter intercom view and see preview with sound of what is happening...

Sorry for late response. I've changed: ``` __jailed__path__+'_pluginNode.js' ``` to: ``` __jailed__path__+'_pluginNode.js' ,[],{execArgv: ['--debug']} ``` I'm using node 0.12.0 As for the argument '--debug' I've also tried --debug-brk='' I have...

Ok I think I've got the debugging of child process right. That does not include vm at the moment. Basically what's happening is that WebStorm runs main script with --debug-brk=....

No problem ;) --debug-brk stops the script until the debugger is connected. So there is a natural delay.

I've give it a shot and as far as I can tell the best fix for me is just commenting out (ThumbWheel.cpp:152) ``` if(scroll_action) { //scroll_action->press(true); scroll_action->move(direction * event.rotation); }...

@zyoungdev Can you share your config for thumbwheel ? Mine is as follows: ``` thumbwheel: { divert: true; invert: false; left: { threshold: 1; interval: 10; direction: "Right"; mode: "OnInterval";...