Driver for the [module name here] module. The hardware documentation can be found [here](link to module hardware documentation).
[Describe what the module does and how it can be used.]
npm install module-package-name-here
/*********************************************
This [module-name] module example [describe what the example code is doing].
*********************************************/
const tessel = require('tessel');
const moduleLib = require('../'); // Replace '../' with 'module-name-here' in your own code
var module = moduleLib.use(tessel.port['A']);
// example usage of the module API
# [module].[methodName]( callback(err) )
[Describe the use of the method]
# [module].on( [event], callback(err) )
Emitted upon [when is the event emitted].
- [Example Code](Link to additional example code in the repo if available). [Describe the usage of the additional example code]
MIT or Apache 2.0, at your option