ambilux
v0.0.1
Published
Calculate average pixel colour for ambilight effect
Downloads
4
Maintainers
Readme
Ambilux
Calculate average pixel colour for ambilight effect.
Usage
var ambilux = require('ambilux');
var interval = ambilux.run({
refreshInterval: 150
}, cb);
function cb (colours) {
console.log(colours);
}
setTimeout(() => {
clearInterval(interval);
}, 2000);
Options
{
screenHeight: screenSize.height,
screenWidth: screenSize.width,
ledsHorizontal: 10,
ledsVertical: 7,
pixelGap: 25,
screenOffset: 0.1,
refreshInterval: 100
}