Tod Kurt

Results 372 comments of Tod Kurt

Are you using `electron-rebuild`? `electron-rebuild` has a bug where it's passing both `--runtime=napi` and `--runtime=electron` to `prebuild-install`. See: https://github.com/electron/electron-rebuild/issues/520 Under NAPI, there is only one binary for both Node and...

I've opened a `prebuild-install` issue to attempt to solve this downstream. https://github.com/prebuild/prebuild-install/issues/146

Hi, This sounds like a good idea. I'll look into how to add it.

USB HID is fundamentally a packet protocol (of multiple types, called "reports" in USB parlance) with no clean mapping to a transmit/receive stream, so I think that's what that informed...

Hi @bathos, Yes, if you want to do a PR with the README warning, that would be awesome. I know nothing of stream.Duplex yet but I'd be amenable to adding...

This is difficult to do in a cross-platform way, so I expect there won't be much movement on this. It requires reading and parsing the HID Report Descriptor for each...

Wow what a mess. Good luck. :) The `hid_device_info` struct does return `interface_number` so can you `hid_enumerate(vid,pid)` and then pick which device as the `interface_number`, `usage_page` and `usage` you are...

Judging from that HID Report Descriptor, I think you can do `hid_open_path()` on any of those devices with usage_page/usage:0xFF00/0x0001 and send on reportIds 4, 5, or 7 and it should...

> The problem comes when trying to call SendFeatureReport. If you don’t know the length and send an entire report then an error is thrown. Paul Deignan That's how USB...

@crashniels do you have an Amazon ASIN or similar link to the device in question? I'd like to get one of these myself to experiment on.