Tod Kurt
Tod Kurt
A Discord discussion led me to want the ability to have something like `CURRENT.UF2`, but contained both the current version of CircuitPython and the contents of the CP filesystem (`code.py`,...
Hi, I'm the current maintainer of [`node-hid`](https://github.com/node-hid/node-hid). It supports two different back-end native libraries on Linux: `libusb` or `hidraw`. The bindings loading currently looks like: ```js if( !driverType || driverType...
Hi, This library is perfect for my needs, but I'm finding it is losing MIDI messages. Has anyone else seen this? To demonstrate the issue, I've create a lightly modified...
### Operating System MacOS ### Board Raspberry Pi Pico RP2040 ### Firmware tinyusb/examples/device/cdc_msc using pico-sdk 1.4.0 in $PICO_SDK_PATH ### What happened ? Cannot compile with `LOG=1` or `LOG=2`, instead get...
A regression happened in saving patterns, as reported here https://github.com/todbot/blink1/issues/669 This should add a color pattern: ``` curl 'http://localhost:8934/blink1/pattern/add?pname=blink4green&pattern=4,%2300ff00,1.5,%23000000,0.5' ``` with the JSON response being: ```json { "pattern": { "name":...
This is a persistent issue for Linux/Raspberry Pi users. I think we can make it a menu option or Preference setting. See: https://github.com/todbot/Blink1Control2/issues/178
The byte array and `usb_control_msg()` arguments in `libusb/blink1.go` were incorrect, but happened to work with blink(1) mk1 and mk2 devices as they did not check the reportId. Since blink(1) mk3...
Hi, Is there a way to get the current availability setting of a logged in user? I see there is a `skyweb.setStatus(str)` but is there an easy way to expand...
Hi, How should one detect bad login credentials and other errors in Skyweb? It looks like the API doesn't support the 'reject' part of Promises nor does it throw Error...
How do I set up nconf so the saved config file contains both set() and defaults values? For instance: ``` nconf.file({file: "config.json"}); nconf.defaults({example1: "value"}); nconf.set('example2', "another value"); nconf.save(); // config.json...