Ivo Janssen
Ivo Janssen
However, getting back on topic - I do think that `.close()` should execute correctly, even in browser, and if the port can't be closed by the application it's likely a...
Hm, that's strange. According to my research with Loupedeck CT, the USB device ID is `0003`, not `0007`, which is what the software is looking for. I wonder if you...
Interesting, maybe there's something different about the device. I will make a note of that. If all the functionality works as intended using the manual instantiation, then we could just...
> Well, it would be nice to get to work on my computer with my hardware by selecting the correct ID manually. But what if another user wants to use...
@latenitefilms that's great info, thank you! Looking at your code, it looks like you also do a firmware check. Does that mean that a V1 CT can also act like...
That's super useful information! Thank you! I'll try to get my hands on a newer CT at some point so I can troubleshoot and add support.
This is great, thank you! Looks a lot like the firmware change that has been affecting some of the other devices. Are you able to submit a PR?
Sure. I was unable to run the example as-is: ``` > const humanId = await import('human-id') undefined > humanId() Uncaught TypeError: humanId is not a function > ``` I am...
I'm only importing dynamically because I'm using the REPL. I believe the outcome is the same doing a regular `import humanId from 'human-id'` or a cjs require: ``` > const...