web api instance method
SerialPort: open() method
Secure contextAvailable in workers
The open() method of the SerialPort interface returns a Promise that resolves when the port is opened. By default the port is opened with 8 data bits, 1 stop bit and no parity checking. The baudRate parameter is required.
Syntax
open(options)
Parameters
options- : An object with any of the following values:
baudRate- : A positive, non-zero value indicating the baud rate at which serial communication should be established.
bufferSizeOptional- : An unsigned long integer indicating the size of the read and write buffers that are to be established. If not passed, defaults to 255.
dataBitsOptional- : An integer value of 7 or 8 indicating the number of data bits per frame. If not passed, defaults to 8.
flowControlOptional- : The flow control type, either
"none"or"hardware". The default value is"none".
- : The flow control type, either
parityOptional- : The parity mode, either
"none","even", or"odd". The default value is"none".
- : The parity mode, either
stopBitsOptional- : An integer value of 1 or 2 indicating the number of stop bits at the end of the frame. If not passed, defaults to 1.
- : An object with any of the following values:
Return value
A Promise.
Exceptions
The returned Promise rejects with one of the following exceptions:
InvalidStateErrorDOMException- : If
open()is called when the port is already open.
- : If
NetworkErrorDOMException- : If the attempt to open the port failed.
Examples
Before communicating on a serial port it must be opened. Opening the port allows the site to specify the necessary parameters that control how data is transmitted and received. Developers should check the documentation for the device they are connecting to for the appropriate parameters.
await port.open({ baudRate: 9600 /* pick your baud rate */ });
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.