Skip to content

tmpvar/node-grbl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published