Daniel Schaefer

Results 58 comments of Daniel Schaefer

It's rather easy to do that, just edit the `board.h` file and rebuild.

> Anything more required other than setting `UsbDeviceBuilder::supports_remote_wakeup(true)`? This just tells the host that the device supports remote wakeup. Then the host will "arm" remote wakeup which you can check...

I've tested using a Keychron Q1 keyboard and the following systems: - Works - GNOME on Linux 6.0.6 - Windows 10 - Doesn't work - MacOS Monterery (Apparently it doesn't...

It's supported now: https://github.com/qmk/qmk_firmware/blob/master/quantum/via.c#L637 Since: https://github.com/qmk/qmk_firmware/pull/16086

It's not showing my key either on Fedora 40Beta. Installed with `sudo dnf install yubikey-manager-qt`. It's version 1.2.5 The CLI is working: ``` > ykman list YubiKey FIPS (4.4.5) [OTP+FIDO+CCID]...

I found that I can add a DFU suffix with this tool: https://dfu-util.sourceforge.net/dfu-suffix.1.html Then dfu-buddy will recognize it as a "Plain" DFU file.

I've got a table with TDH20P handset and TC15S Control Box. The UART pins match https://github.com/tjhorner/upsy-desky/issues/5#issuecomment-1235040100 And the protocol matches https://github.com/adfinis/muuvctl#serial-protocol

To clarify what I did: I got RJ50 (10P10C) and RJ45 (8P8C) connectors and crimped them together on a cable. Then using an RJ45 breakout board I connected the TX,RX...

Works with pyserial: ```python import serial with serial.Serial('/dev/ttyUSB1', 9600, timeout=1) as ser: while True: # Move to pos 1 ser.write( b'\xd8\xd8x\x04\x04') # Move to pos 2 #ser.write( b'\xd8\xd8x\x08\x08') # Move...

> Same here. In my case I'm using Tera, which uses globwalk to handle globs and I noticed that my application is practically unusable when running in a Docker container...