You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/boot.md
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ bootcfg(
33
33
nkro: bool=False,
34
34
pan: bool=False,
35
35
storage: bool=True,
36
-
usb_id: Optional[tuple[str, str]]=None,
36
+
usb_id: Optional[dict]={},
37
37
**kwargs,
38
38
) ->bool
39
39
```
@@ -128,6 +128,9 @@ I have to mount!" every time you plug in your keyboard.
128
128
#### `usb_id`
129
129
A recent addition to CircuitPython 8 is the ability to give your keyboard an
130
130
identity other than "MCU board manufacturer" - "CircuitPython device".
131
+
The argument is expected to be a kwargs-dictionary that is passed to
132
+
`supervisor.set_usb_identification`.
133
+
See the example 1 and the [CircuitPython documentation](https://docs.circuitpython.org/en/latest/shared-bindings/supervisor/index.html#supervisor.set_usb_identification) for reference.
0 commit comments