German Gutierrez
German Gutierrez
Confirmed, the API as I knew it is not there anymore. The host api.regilive.ro is still there but it's just a "hello" result there and nothing else, my provider was...
Or you can create a PR with the new url, is it still regielive.ro?
On the right side there isn't any event, on the left I saw this ``` [00:00:07.966,278] zmk: position_state_changed_listener: 29 bubble (no undeci ded hold_tap active) [00:00:07.966,308] zmk: zmk_keymap_apply_position_state: layer: 2...
I added this to app/src/behaviors/behavior_soft_off.c ``` if (!IS_SPLIT_PERIPHERAL) { k_usleep(100000); } ``` the whole fragment looks like ``` if (hold_time > config->hold_time_ms) { if (!IS_SPLIT_PERIPHERAL) { k_usleep(100000); } zmk_pm_soft_off(); }...
So far my hack is working, I'm giving it more time to be sure. I'll open a PR if it goes ok for a couple of days.
I think it's related to the issue I reported today #2300
While fixing the peripheral soft_off issue, I noted that the peripheral turned off as soon as I pressed the key, despite the hold-time-ms setting. Upon investigation, I discovered an undocumented...