0.0.1 • Published 8 years ago

ambilux v0.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

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
}