Skip to content

Commit cf9a00d

Browse files
committed
A little more content into WEBUSB_README
1 parent 87fe58f commit cf9a00d

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

WEBUSB_README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ this WebUSB serial console at any time.
2121

2222
You can type into either console, and CircuitPython output is sent to all active consoles.
2323

24+
One example of a web page you can use to test drive this feature can be found at:
25+
26+
https://adafruit.github.io/Adafruit_TinyUSB_Arduino/examples/webusb-serial/index.html
27+
28+
2429
## How to enable
2530

2631
Update your platform's mpconfigboard.mk file to enable and disable specific types of USB interfaces.
@@ -44,7 +49,7 @@ CIRCUITPY_USB_HID = 0
4449
CIRCUITPY_USB_MIDI = 0
4550
CIRCUITPY_USB_VENDOR = 1
4651

47-
Notice that to enable VENDOR, we had to give up HID. There may be platforms that can have both.
52+
Notice that to enable VENDOR on ESP32-S2, we had to give up HID. There may be platforms that can have both, or even all three.
4853

4954
## Implementation Notes
5055

@@ -73,7 +78,7 @@ genhdr/autogen_usb_descriptor.h.
7378

7479
Also worth pointing out - the re-use of the CDC connect/disconnect mechanism is not actually part
7580
of the WebUSB standard, it's more of "common idiom". We make use of it here because we need to know
76-
when we should be paying attention to the WebUSB serial interface,and when we should ignore it..
81+
when we should be paying attention to the WebUSB serial interface, and when we should ignore it..
7782

7883
## Possible future work areas
7984

0 commit comments

Comments
 (0)