14 lines
204 B
JavaScript
14 lines
204 B
JavaScript
|
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;
|
||
|
}
|