SerialPort Transport Plugin for webduino-js
When running in browser, you must have the following installed:
- API Proxy for Google Chromeâ„¢ (launch before opening your application)
- API Proxy Agent for Google Chromeâ„¢
to interface with Webduino/Arduino via SerialPort.
See also: webduino-js
The webduino-base.js
or webduino-all.js
has bundled serial and bluetooth transports by default. If you have successfully built it or use the CDN version, you are ready to go.
$ npm install webduino-serial-transport
webduino-js provides isomorphic APIs:
// Need to acquire 'webduino' in Node.js:
// var webduino = require('webduino-js');
var board, led;
board = new webduino.Arduino({
transport: 'serial',
path: '/dev/cu.usbmodem1421'
});
// or:
// board = new webduino.Arduino({
// transport: require('webduino-serial-transport'),
// path: '/dev/cu.usbmodem1421'
// });
board.on('ready', function() {
led = new webduino.module.Led(board, board.getDigitalPin(10));
led.on();
});
This project is licensed under the MIT license, see License for more information.