UNPKG

249 BJavaScriptView Raw
1const LedControl = require("./ledcontrol");
2
3class Matrix extends LedControl {
4 constructor(options) {
5 options.isMatrix = true;
6 super(options);
7 }
8
9 static get CHARS() {
10 return LedControl.MATRIX_CHARS;
11 }
12}
13
14module.exports = Matrix;