UNPKG

chip-io

Version:

Johnny-Five IO Plugin for the Next Thing Co. C.H.I.P.

16 lines (9 loc) 235 B
var util = require('util'); var five = require('johnny-five'); function StatusLed(opts) { opts = opts || {}; opts.pin = 'STATUS'; five.Led.call(this, opts); } util.inherits(StatusLed, five.Led); module.exports = StatusLed;