rktk 0.2.0

rktk - Rust Keyboard firmware Toolkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Config",
  "type": "object",
  "required": [
    "constant",
    "dynamic"
  ],
  "properties": {
    "constant": {
      "$ref": "#/definitions/ConstantConfig"
    },
    "dynamic": {
      "$ref": "#/definitions/DynamicConfig"
    }
  },
  "definitions": {
    "BufferSizeConfig": {
      "type": "object",
      "properties": {
        "encoder_event": {
          "description": "Size of the encoder event buffer",
          "default": 4,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        },
        "keyboard_event": {
          "description": "Size of the keyboard event buffer",
          "default": 4,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        },
        "log_channel": {
          "description": "Size of the log channel buffer",
          "default": 64,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        },
        "mouse_event": {
          "description": "Size of the mouse event buffer",
          "default": 4,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        },
        "rrp": {
          "description": "Size of the buffer used by rrp",
          "default": 512,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        },
        "split_channel": {
          "description": "Size of the split channel buffer",
          "default": 64,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        }
      },
      "additionalProperties": false
    },
    "ComboConfig": {
      "type": "object",
      "properties": {
        "threshold": {
          "default": 50,
          "type": "integer",
          "format": "uint32",
          "minimum": 0.0
        }
      },
      "additionalProperties": false
    },
    "ConstantConfig": {
      "description": "Root struct of the \"constant\" config",
      "type": "object",
      "required": [
        "keyboard"
      ],
      "properties": {
        "buffer": {
          "$ref": "#/definitions/BufferSizeConfig"
        },
        "key_manager": {
          "$ref": "#/definitions/KeymanagerConstantConfig"
        },
        "keyboard": {
          "$ref": "#/definitions/KeyboardConstantConfig"
        }
      },
      "additionalProperties": false
    },
    "DynamicConfig": {
      "description": "Root struct of the \"dynamic\" config",
      "type": "object",
      "required": [
        "keyboard"
      ],
      "properties": {
        "key_manager": {
          "$ref": "#/definitions/KeyManagerConfig"
        },
        "keyboard": {
          "$ref": "#/definitions/KeyboardConfig"
        },
        "rktk": {
          "$ref": "#/definitions/RktkConfig"
        }
      }
    },
    "KeyManagerConfig": {
      "description": "Config for key manager.",
      "type": "object",
      "properties": {
        "key_resolver": {
          "$ref": "#/definitions/KeyResolverConfig"
        },
        "mouse": {
          "$ref": "#/definitions/MouseConfig"
        }
      },
      "additionalProperties": false
    },
    "KeyResolverConfig": {
      "type": "object",
      "properties": {
        "combo": {
          "$ref": "#/definitions/ComboConfig"
        },
        "tap_dance": {
          "$ref": "#/definitions/TapDanceConfig"
        },
        "tap_hold": {
          "$ref": "#/definitions/TapHoldConfig"
        }
      },
      "additionalProperties": false
    },
    "KeyboardConfig": {
      "description": "Keyboard layout and informations.\n\nThis struct is used to - Defines keyboard basic informations (ex: name, cols, rows, ...) - Defines keyboard physical layout which is used by remapper (layout property)\n\n# Coordination of the keyboard matrix\n\nThe rktk coordinate system has the top left as (0,0), and the coordinate values increase toward the bottom right.\n\n## Split keyboard coordinates For `col` in keyboard config, specify the coordinates of the entire keyboard. In other words, for a split keyboard with 7 columns on the left hand side and 7 columns on the right hand side, specify 14.\n\nInternally, the key scan driver returns the coordinates of \"only one hand.\" In other words, in this case, x=0-6. Therefore, it is necessary to convert the coordinates received from the key scan driver into the coordinates of both hands, and for this purpose the `split_right_shift` property is used.\n\nBelow is an example of a split keyboard with 14 columns and 4 rows. ```ignored [    Left    ]   [     Right     ] 0 1 2 3 4 5 6    0 1 2  3  4  5  6 ← One-handed coordinates ↓ split_right_shift=7 (or None) col=14 →   0 1 2 3 4 5 6    7 8 9 10 11 12 13 ← Two-handed coordinates 0 _ Q W E R T _    _ Y U  I  O  P  _ 1 ... 2 ... 3 ... ↑ row=4 ```",
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "layout": {
          "description": "Defines the layout of the keyboard used in the remapper.\n\nThis is a JSON object that represents the layout of the keyboard and compatible with via's json layout format.",
          "anyOf": [
            {
              "$ref": "#/definitions/KeyboardLayout"
            },
            {
              "type": "null"
            }
          ]
        },
        "name": {
          "description": "The name of the keyboard.",
          "type": "string"
        },
        "split_right_shift": {
          "description": "A number representing the row number that the right col starts on in a split keyboard.\n\nIf not set, `cols / 2` will be automatically set, so there is no need to set it if the number of columns on the right and left sides is the same. Also, there is no need to set it in the case of a non-split keyboard, as it is not used.",
          "default": null,
          "type": [
            "integer",
            "null"
          ],
          "format": "uint8",
          "minimum": 0.0
        }
      },
      "additionalProperties": false
    },
    "KeyboardConstantConfig": {
      "type": "object",
      "required": [
        "cols",
        "rows"
      ],
      "properties": {
        "cols": {
          "description": "The number of columns in the keyboard matrix.",
          "type": "integer",
          "format": "uint8",
          "minimum": 0.0
        },
        "encoder_count": {
          "description": "The number of encoder keys.",
          "default": 0,
          "type": "integer",
          "format": "uint8",
          "minimum": 0.0
        },
        "left_rgb_count": {
          "description": "RGB led count for left side. This is also used for non-split keyboard.",
          "default": 0,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        },
        "right_rgb_count": {
          "description": "RGB led count for right side",
          "default": 0,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        },
        "rows": {
          "description": "The number of rows in the keyboard matrix.",
          "type": "integer",
          "format": "uint8",
          "minimum": 0.0
        }
      },
      "additionalProperties": false
    },
    "KeyboardLayout": {
      "type": "object",
      "required": [
        "keymap"
      ],
      "properties": {
        "keymap": {
          "description": "Keymap json data.\n\nThis is basically kle's json but logical key location data is added as legend."
        },
        "labels": {
          "description": "Currently, this is unused in rktk.",
          "default": [],
          "type": "array",
          "items": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      }
    },
    "KeymanagerConstantConfig": {
      "type": "object",
      "properties": {
        "combo_key_max_definitions": {
          "default": 2,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        },
        "combo_key_max_sources": {
          "default": 3,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        },
        "layer_count": {
          "default": 5,
          "type": "integer",
          "format": "uint8",
          "minimum": 0.0
        },
        "normal_max_pressed_keys": {
          "default": 8,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        },
        "oneshot_state_size": {
          "default": 4,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        },
        "tap_dance_max_definitions": {
          "default": 2,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        },
        "tap_dance_max_repeats": {
          "default": 4,
          "type": "integer",
          "format": "uint",
          "minimum": 0.0
        }
      },
      "additionalProperties": false
    },
    "MouseConfig": {
      "type": "object",
      "properties": {
        "auto_mouse_duration": {
          "default": 500,
          "type": "integer",
          "format": "uint32",
          "minimum": 0.0
        },
        "auto_mouse_layer": {
          "default": 1,
          "type": "integer",
          "format": "uint8",
          "minimum": 0.0
        },
        "auto_mouse_threshold": {
          "default": 0,
          "type": "integer",
          "format": "uint8",
          "minimum": 0.0
        },
        "scroll_divider_x": {
          "default": 20,
          "type": "integer",
          "format": "int8"
        },
        "scroll_divider_y": {
          "default": -12,
          "type": "integer",
          "format": "int8"
        }
      },
      "additionalProperties": false
    },
    "RktkConfig": {
      "description": "RKTK behavior config",
      "type": "object",
      "properties": {
        "default_auto_mouse_duration": {
          "description": "Default duration of auto mouse mode (ms)",
          "default": 500,
          "type": "integer",
          "format": "uint32",
          "minimum": 0.0
        },
        "default_cpi": {
          "description": "Default CPI value for mouse",
          "default": 600,
          "type": "integer",
          "format": "uint16",
          "minimum": 0.0
        },
        "display_timeout": {
          "description": "Time(ms) until the display is turned off if there is no activity",
          "default": 20000,
          "type": "integer",
          "format": "uint64",
          "minimum": 0.0
        },
        "double_tap_threshold": {
          "description": "Threshold for double tap (ms).",
          "default": 500,
          "type": "integer",
          "format": "uint64",
          "minimum": 0.0
        },
        "scan_interval_keyboard": {
          "description": "Time (ms) to wait for the next keyboard scan",
          "default": 5,
          "type": "integer",
          "format": "uint64",
          "minimum": 0.0
        },
        "scan_interval_mouse": {
          "description": "Time (ms) to wait for the next mouse scan",
          "default": 5,
          "type": "integer",
          "format": "uint64",
          "minimum": 0.0
        },
        "split_usb_timeout": {
          "description": "Timeout for detecting split USB connection (ms).",
          "default": 1000,
          "type": "integer",
          "format": "uint64",
          "minimum": 0.0
        },
        "state_update_interval": {
          "description": "rktk basically updates the keyboard state only when it receives an event from the hardware. However, many states are time-dependent and can change even without an event. Polling at regular time intervals is necessary to monitor such changes.\n\nThis setting specifies that interval. (ms)",
          "default": 10,
          "type": "integer",
          "format": "uint64",
          "minimum": 0.0
        },
        "swap_mouse_x_y": {
          "description": "Swap the x and y values obtained from the mouse driver. This also affects the scroll direction.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "TapDanceConfig": {
      "type": "object",
      "properties": {
        "threshold": {
          "default": 200,
          "type": "integer",
          "format": "uint32",
          "minimum": 0.0
        }
      },
      "additionalProperties": false
    },
    "TapHoldConfig": {
      "type": "object",
      "properties": {
        "hold_on_other_key": {
          "default": true,
          "type": "boolean"
        },
        "threshold": {
          "default": 200,
          "type": "integer",
          "format": "uint32",
          "minimum": 0.0
        }
      },
      "additionalProperties": false
    }
  }
}