grbl

1.0.0 • Public • Published

node-grbl

Communicate with grbl running on an arduino

Use

Global

npm install -g grbl
grbl

now you have a repl to your machine!

Library

npm install grbl

Basic example

 
var grbl = require('grbl');
 
grbl(function(machine) {
  process.stdin.pipe(machine);
  process.stdin.resume();
  machine.on('line', function(line) {
    process.stdout.write('line:' + line + '\n');
  });
});
 

License

MIT

/grbl/

    Package Sidebar

    Install

    npm i grbl

    Weekly Downloads

    2

    Version

    1.0.0

    License

    none

    Last publish

    Collaborators

    • tmpvar