dmx-flok/drivers/null.js

14 lines
204 B
JavaScript
Raw Normal View History

2012-09-02 12:36:08 +00:00
exports.init = function(dev_id) {
var universe = new Buffer(512)
universe.fill(0)
this.update = function(u) {
console.log(u);
}
this.get = function(k) {
return universe[k];
}
return this;
}