-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebserial.js
153 lines (138 loc) · 4.18 KB
/
webserial.js
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
/*
WebSerial wrapper
Simplifies WebSerial
created 15 May 2022
modified 16 May 2022
by Tom Igoe
*/
// TODO: multiple ports
// TODO: multiple data types
// need self = this for connect/disconnect functions
let self;
class WebSerialPort {
constructor() {
// if webserial doesn't exist, return false:
if (!navigator.serial) {
alert("WebSerial is not enabled in this browser");
return false;
}
// TODO: make this an option.
this.autoOpen = true;
// copy this to a global variable so that
// connect/disconnect can access it:
self = this;
// basic WebSerial properties:
this.port;
this.reader;
this.serialReadPromise;
// add an incoming data event:
// TODO: data should probably be an ArrayBuffer or Stream
this.incoming = {
data: null
}
// incoming serial data event:
this.dataEvent = new CustomEvent('data', {
detail: this.incoming,
bubbles: true
});
// TODO: bubble these up to calling script
// so that you can change button names on
// connect or disconnect:
navigator.serial.addEventListener("connect", this.serialConnect);
navigator.serial.addEventListener("disconnect", this.serialDisconnect);
// if the calling script passes in a message
// and handler, add them as event listeners:
this.on = (message, handler) => {
parent.addEventListener(message, handler);
};
}
async openPort(thisPort) {
try {
// if no port is passed to this function,
if (thisPort == null) {
// pop up window to select port:
this.port = await navigator.serial.requestPort();
} else {
// open the port that was passed:
this.port = thisPort;
}
// set port settings and open it:
// TODO: make port settings configurable
// from calling script:
await this.port.open({ baudRate: 9600 });
// start the listenForSerial function:
this.serialReadPromise = this.listenForSerial();
} catch (err) {
// if there's an error opening the port:
console.error("There was an error opening the serial port:", err);
}
}
async closePort() {
if (this.port) {
// stop the reader, so you can close the port:
this.reader.cancel();
// wait for the listenForSerial function to stop:
await this.serialReadPromise;
// close the serial port itself:
await this.port.close();
// clear the port variable:
this.port = null;
}
}
async sendSerial(data) {
// if there's no port open, skip this function:
if (!this.port) return;
// if the port's writable:
if (this.port.writable) {
// initialize the writer:
const writer = this.port.writable.getWriter();
// convert the data to be sent to an array:
// TODO: make it possible to send as binary:
var output = new TextEncoder().encode(data);
// send it, then release the writer:
writer.write(output).then(writer.releaseLock());
}
}
async listenForSerial() {
// if there's no serial port, return:
if (!this.port) return;
// while the port is open:
while (this.port.readable) {
// initialize the reader:
this.reader = this.port.readable.getReader();
try {
// read incoming serial buffer:
const { value, done } = await this.reader.read();
if (value) {
// convert the input to a text string:
// TODO: make it possible to receive as binary:
this.incoming.data = new TextDecoder().decode(value);
// fire the event:
parent.dispatchEvent(this.dataEvent);
}
if (done) {
break;
}
} catch (error) {
// if there's an error reading the port:
console.log(error);
} finally {
this.reader.releaseLock();
}
}
}
// this event occurs every time a new serial device
// connects via USB:
serialConnect(event) {
console.log(event.target);
// TODO: make autoOpen configurable
if (self.autoOpen) {
self.openPort(event.target);
}
}
// this event occurs every time a new serial device
// disconnects via USB:
serialDisconnect(event) {
console.log(event.target);
}
}