python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Connecting thermal printer on clients side via webusbapi and zadig
I'm trying to connect thermal printer on clients side through web app. (Frontend angular, backend c#)
First I got Access denied, and then after Zadig I managed to open connection to thermal printer, a...
user3746480
Votes: 0
Answers: 1
web serial api readable stream code not work well
while (true) {
let { value, done } = await reader.read();
if (done) {
// |reader| has been canceled.
console.log("brack");
break;
}
console.log(value);
...
Tejas Chauhan
Votes: 0
Answers: 1
access mass storage device on web browser with WEBUSB API
how to display all mass storage device (e.g.-pen drive, etc..) data in a web browser.
I have successfully accessed comport device in the browser using serial API, but how to access the mass storage de...
Tejas Chauhan
Votes: 0
Answers: 1
Understanding the WebUSB connection workflow
I am working on an Chrome webapp that uses WebUSB running on an Android device, and am trying to understand how the connection management works.
If I am reading the spec right, if you don't already ha...
Polly
Votes: 0
Answers: 2