Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
Note: This feature is available in Dedicated Web Workers.
The getSignals() method of the SerialPort interface returns a Promise that resolves with an object containing the current state of the port's control signals.
getSignals()None.
Returns a Promise that resolves with an object containing the following members:
clearToSendA boolean indicating to the other end of a serial connection that is clear to send data.
dataCarrierDetectA boolean that toggles the control signal needed to communicate over a serial connection.
dataSetReadyA boolean indicating whether the device is ready to send and receive data.
ringIndicatorA boolean indicating whether a ring signal should be sent down the serial connection.
The returned Promise rejects with one of the following exceptions:
InvalidStateError DOMExceptionIf getSignals() is called when the port is not open. Call SerialPort.open() to open the port first.
NetworkError DOMExceptionIf the signals on the device could not be read.
The following example reads the control signals from an open port and checks the dataSetReady property to determine whether the connected device is ready to communicate.
const signals = await port.getSignals();
console.log(`Device ready: ${signals.dataSetReady}`);