jw0785
jw0785
I also tried the full version. It's unfortunately the same. I tried to build the full version firmware with #define USB_POLLING_INTERVAL_MS 4, but somehow after flashing it the quantizer stopped...
As for vial, i think that repo misses a keymap.h?
I think I find out what is actually happening. Normally, the spacebar will interrupt other keys not released, but when using the quantizer, the left spacebar will instead repeat the...
a quick test with this, ```python from pynput.keyboard import Key, Listener def on_press(key): try: print(f'Alphanumeric key {key.char} pressed') except AttributeError: print(f'Special key {key} pressed') def on_release(key): print(f'{key} released') if key...