nopixel
v1.0.0
Published
A very simplified version of Google's AnyPixel library, designed for the WPI DataVis lab
Maintainers
Readme
Nopixel
An easy way to control interactive displays
Installation
npm install nopixel
Usage
var Nopixel = require('nopixel');
var nopixel = new Nopixel('/path/to/config.json');
nopixel.on('clicked', function(eventDetail) {
nopixel.setPixel(eventDetail.x, eventDetail.y, "red").update();
})Buttons should turn red when you press them.
