1.0.1 • Published 7 years ago

irobot-create-open-interface v1.0.1

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

irobot-create-open-interface

An implementation of the iRobot Create - Open Interface

Installation

npm install irobot-create-open-interface --save

Example

var irobot = require('irobot-create-open-interface');

const irobotSerial = '/dev/ttyUSB0';

var robot = new irobot.Robot(irobotSerial);
robot.on('connected', () => {
    robot.fullMode();
    robot.streamAllSensors();
});

robot.on('data', data => {
    console.log(data);
});

Documentation

TODO