A simple package to use the new Serial Api available in Chrome (also Edge based on Chromium)
🔥 Notice : Serial Api is under Chrome experimental flag for Chrome 79 and expected to goes on Origins Trail on Chrome 80
Although WebUSB has been around for some years, it is mainly targeted at companies intending to developed web-based firmwares. A major downside of WebUSB is once a native driver is installed on the OS, the device will no longer be recognized by WebUSB. Unlike WebUSB, the Serial Api is intended for use as a traditional COM port (Serial port) which includes many microcontroller based devices and USB-to-Serial devices such as FTDI and Cypress chipsets. Additionally, you can still implement your own USB CDC protocol, and have the OS driver and Web driver co-exist. The Serial Api opens doors for new and exciting web-based front-ends for small and medium sized embedded projects.
ComPort makes it easy for embedded developers to quickly build a modern front-end for their applications. It removes the hassle of dealing with async/await functions. This package is not intended for high-performance and high data-rate applications, but for quick and simple development. If high-performance is required then a browser based app is probably the wrong choice.
all serial communication to and from embedded hardware via USB-to-Serial bridges like FTDI cables and Arduino boards.
Enable it in: chrome://flags/#enable-experimental-web-platform-features
npm i
npm run build
npm i @danchitnis/comport
import the library
import {ComPort} from "@danchitnis/ComPort"
initialize:
const port = new ComPort();
port.connect(9600);
port.addEventListener("rx", dataRX);
data RX event:
function dataRX(e) {
log(e.detail + "\n");
}
See here examples tested with Arduino Nano 33 BLE, but also extendable to other boards as it is simply using serial communication.
Generated using TypeDoc
The types of events generated by ComPort