UNPKG

johnny-five-electron

Version:

Temporary fork to support Electron (to be deprecated)

14 lines (10 loc) 289 B
var LedControl = require("./ledcontrol"); // stub implementation; extract functionality from ledcontrol.js function Matrix(opts) { opts.isMatrix = true; return new LedControl(opts); } Object.assign(Matrix, LedControl, { CHARS: LedControl.MATRIX_CHARS }); module.exports = Matrix;