1.0.4 • Published 7 years ago

wemos-led-matrix v1.0.4

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

wemos-led-matrix-js

JS lib for Wemos LED Matrix Shield

Example for Espruino

var LedMatrix = require('https://raw.githubusercontent.com/jekill/wemos-led-matrix-js/master/dist/led-matrix.js').LedMatrix;

var leds = Graphics.createArrayBuffer(8,8,1,{
  zigzag: false,
  vertical_byte: true
}); 
var matrix = new LedMatrix(5);
var x;

setInterval(function(){
  leds.clear();
  x = x === 1 ? 2 : 1;
  leds.drawString(":)", 0, x);
  matrix.sendBytes(leds.buffer);
}, 1000);
1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago