2.1.8 • Published 4 years ago

ts-webusb-serial v2.1.8

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

webusb-serial

A virtual node-serialport implementation that uses webusb as the transport.

webusbSerialPort

Use webusb to send/receive data to a USB connected physical device:

var WebusbSerialPort = require('webusb-serial');
var firmata = require('firmata');


//create the webusb serialport and optionally specify a USB filter
var serialPort = new WebusbSerialPort({
  filters: [
    { 'vendorId': 0x2341, 'productId': 0x8036 }, // Arduino Leonardo
    { 'vendorId': 0x2341, 'productId': 0x8037 }, // Arduino Micro
    { 'vendorId': 0x239a, 'productId': 0x8011 } // Adafruit Circuit Playground
  ]
});

//use the virtual serial port to send a command to a firmata device
var board = new firmata.Board(serialPort, function (err, ok) {
  if (err){ throw err; }
  //light up a pin
  board.digitalWrite(13, 1);
});
2.1.8

4 years ago

2.1.7

4 years ago

2.1.6

4 years ago

2.1.5

4 years ago

2.1.4

4 years ago

2.1.3

4 years ago

2.1.2

4 years ago

2.1.1

4 years ago