You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Prolific PL2303 USB to serial adapter driver for node.
API
const UsbSerial = require('usbserial');
let serial = new UsbSerial();
serial.on('data', data => console.log(data));
serial.on('ready', () => serial.send(new Buffer('Hello!')));
About
Prolific PL2303 USB to serial adapter driver for node