Effective mower controller
$ npm install mowitnow
var App = require('mowitnow');
var app = new App({
configFile : '[config-file-path]'
debug : true
});
app.run();
The interface for command-line usage is fairly simplistic at this stage, as seen in the following usage section.
mowitnow [command] <options>
Examples:
> mowitnow run my.cfg
Commands:
run Run instructions from the given config file and return the final positions of mowers
help Print usage info
To run the test suite, first install the dependencies, then run npm test
:
$ npm install
$ npm test