Firefox Tomorrow

web api instance method

SerialPort: open() method

View on MDN ↗

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.
      • bufferSize Optional
        • : An unsigned long integer indicating the size of the read and write buffers that are to be established. If not passed, defaults to 255.
      • dataBits Optional
        • : An integer value of 7 or 8 indicating the number of data bits per frame. If not passed, defaults to 8.
      • flowControl Optional
        • : The flow control type, either "none" or "hardware". The default value is "none".
      • parity Optional
        • : The parity mode, either "none", "even", or "odd". The default value is "none".
      • stopBits Optional
        • : 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.

Return value

A Promise.

Exceptions

The returned Promise rejects with one of the following exceptions:

  • InvalidStateError DOMException
    • : If open() is called when the port is already open.
  • NetworkError DOMException
    • : 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.